Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <article id="article">
  So I think it's worth at least considering building one. 

So let me give you 10 reasons why you might need a website for your business:

  <h2>1. It Impacts Your Credibility </h2>
<blockquote>
According to Sweor.com: “It takes about 50 milliseconds (that’s 0.05 seconds) for users to form an opinion about your website that determines whether they like your site or not, whether they’ll stay or leave .“
</blockquote>
  
As the old saying goes: “You can only make the first impression once.”

When someone first comes across your business, you want to appear credible.

You want to have an amazing website and social media presence that show the results that you’re delivering and testimonials that you’re getting.
</article>
              
            
!

CSS

              
                article {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background-color: #f4f4f4;
  padding: 40px 20px;
}

quote, blockquote {
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  padding: 10px 0;
}
              
            
!

JS

              
                $(document).ready(function() {
  // Get all quote elements inside the article
  const articleBody = $('#article');
  const quotes = articleBody.find('quote, blockquote');
  let tweetableUrl = '';
  let clickToTweetBtn = null;
  
  // Get a url of the current page 
  const currentPageUrl = window.location.href;
    
  quotes.each(function (index, quote) {
    const q = $(quote);
    // Create a tweetable url
    tweetableUrl = makeTweetableUrl(
      q.text(), currentPageUrl
    );

    // Create a 'click to tweet' button with appropriate attributes
    clickToTweetBtn = $("<a>");
    clickToTweetBtn.text('Click to Tweet');

    clickToTweetBtn.attr('href', tweetableUrl);
    clickToTweetBtn.on('click', onClickToTweet);

    // Add button to every blockquote
    q.append(clickToTweetBtn);
            
  });

});


function makeTweetableUrl(text, pageUrl) {

  const tweetableText = "https://twitter.com/intent/tweet?url=" + pageUrl + "&text=" + encodeURIComponent(text);
  
  
  return tweetableText;
}

function onClickToTweet(e) {
  e.preventDefault();

  window.open(
    e.target.getAttribute('href'),
    "twitterwindow", 
    "height=450, width=550, toolbar=0, location=0, menubar=0, directories=0, scrollbars=0"
  );
}

              
            
!
999px

Console