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

              
                <!--
  This is a demo of how to use Font Awesome Pro icons using the Pro CDN using our Webfonts with CSS framework.

  1. We're calling all styles and the loader for Font Awesome Pro via our CDN. See the external references in the CSS configuration section of this demo.

  2. We're then referencing any icons we'd like in the markup below. Note: the layout and styling are being borrowed from fontawesome.com's CSS. Go get your own or check out our faves like Tachyons or Bootstrap.

  * For more info on how to get started, check out https://fontawesome.com/get-started/web-fonts-with-css
  * For more specifics on how to use icons, check out https://fontawesome.com/how-to-use/web-fonts-with-css
  * See all Font Awesome icons at https://fontawesome.com/icons
  -->
<script src="https://kit.fontawesome.com/b15ad03e0d.js" crossorigin="anonymous"></script>

<main class="w-100 min-vh-100 bg-gray9 white sans-serif pa6 flex flex-column justify-center items-center ba bw4 b--gray8">
  <div class="mw8 center w-100 overflow-hidden">

    <h1 class="mt0 mb4 tc fw6 f6 black-10">
      <a href="https://fontawesome.com" class="link gray2 hover-white">
        <i class="fab fa-font-awesome-flag"></i>
        <span>Using SVG Symbols</span>
      </a>
    </h1>

    <!-- Define the symbols, these are invisible on the page -->
    <i data-fa-symbol="delete" class="fas fa-trash fa-fw"></i>
    <i data-fa-symbol="edit" class="fas fa-pencil fa-fw"></i>
    <i data-fa-symbol="favorite" class="fas fa-star fa-fw"></i>
    
    <div class="flex justify-center">
      <div id="app" class="w-50">
        <div v-for="row of rows" class="flex items-center bb ph2 bw2 mb2 b--black-10">
          <div class="w-80 pv2">
             {{ row.label }}
          </div>
          <div class="w-20 tr pv2">
            <!-- Leverage the SVG Sprite technique and the <use> tag -->
            <svg class="icon pa2 br2 pointer bg-gray"><use xlink:href="#edit"></use></svg>
            <svg class="icon pa2 br2 pointer bg-gray"><use xlink:href="#delete"></use></svg>
            <svg class="icon pa2 br2 pointer bg-gray"><use xlink:href="#favorite"></use></svg>
          </div>
        </div>
      </div>
    </div>
  </div>
</main>
              
            
!

CSS

              
                .icon {
  width: 2em;
  height: 2em;
}
              
            
!

JS

              
                var rows = [
  { label: 'Audra Vazques' },
  { label: 'Delia Venezia' },
  { label: 'Ryan Lindbloom' },
  { label: 'Archie Genest' },
  { label: 'Madelene Miguez' },
  { label: 'Micheline President' },
  { label: 'Chantell Harada' },
  { label: 'Merry Barwick' },
  { label: 'Alejandro Starbird' },
  { label: 'Ebonie Husk' },
  { label: 'Ezekiel Lamagna' },
  { label: 'Lynsey Prince' },
  { label: 'Despina Wait' },
  { label: 'Lavina Ferrigno' },
  { label: 'Lynnette Longenecker' },
  { label: 'Jacquelin Aguiar' },
  { label: 'Kathe Mcconkey' },
  { label: 'Luanne Hagar' },
  { label: 'Monte Siddiqi' },
  { label: 'Debi Amoroso' }
]

var app = new Vue({
  el: "#app",
  data: {
    rows: rows
  }
})
              
            
!
999px

Console