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

              
                <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Maxime laudantium cupiditate nisi voluptate obcaecati praesentium saepe, sequi impedit qui dolore vel eius quidem, possimus ipsum, et ea in ullam molestias.</p>
              
            
!

CSS

              
                body {
  font-size: 2rem;
  font-family: Helvetica, sans-serif;
}

.noto-regular-loaded {
  font-family: 'Noto Sans Regular', Helvetica, sans-serif;
}
              
            
!

JS

              
                // Simple check if the browser understands the API
// Is there a better/more reliable way of checking support?
if(document.fonts) {
  // Define a new FontFace
  const notoSansRegular = new FontFace('Noto Sans Regular', 'url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/144736/NotoSans-Regular.woff2), url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/144736/NotoSans-Regular.woff)');
  //console.log(notoSansRegular);

  // Add the FontFace to the FontFaceSet
  document.fonts.add(notoSansRegular);

  // Get the current status of the FontFace
  // (should be 'unloaded')
  console.info('Current status', notoSansRegular.status);

  // Load the FontFace
  notoSansRegular.load();

  // Get the current status of the Fontface
  // (should be 'loading' or 'loaded' if cached)
  console.info('Current status', notoSansRegular.status);

  // Wait until the font has been loaded, log the current status.
  notoSansRegular.loaded.then((fontFace) => {
    console.info('Current status', fontFace.status);
    console.log(fontFace.family, 'loaded successfully.');
    
    // Add a class to the body element
    document.body.classList.add('noto-regular-loaded');
    
  // Throw an error if loading wasn't successful
  }, (fontFace) => {
    console.error('Current status', notoSansRegular.status);
  });

  // Track if all fonts (if there are multiple) have been loaded
  // The 'ready' promise resolves if this is the case
  document.fonts.ready.then((fontFaceSet) => {
    console.log(fontFaceSet.size, 'FontFaces loaded.');
  });
  
} else {
  console.error('Sorry, unsupported browser');
}

              
            
!
999px

Console