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

              
                <h3>Check out our lastest hires! <small>Straight from our employee API!</small></h3>

<ul class="employee-list js-employee-list"></ul>
              
            
!

CSS

              
                * {
  box-sizing: border-box;
}

.employee-list {
  background: lavender;
  padding: 2rem 0.5rem;
  border: 1px solid royalblue;
  border-radius: 0.5rem;
  max-width: 320px;
}

.employee {
  list-style: none;
}

.employee + .employee {
  padding-top: 0.5rem;
}

.employee:after {
  content: ' ';
  height: 0;
  display: block;
  clear: both;
}

.employee-photo {
  float: left;
  padding: 0 0.5rem 0.5rem 0;
}
              
            
!

JS

              
                // wrap things in an IIFE to keep them neatly isolated from other code.
(() => {
  // strict mode to prevent errors and enable some ES6 features
  'use strict'
  
  // takes an employee and turns it into a block of markup
  function employee_markup (employee) {
    return `<li class="employee">
      <img src="${employee.picture.thumbnail}" alt="Photo of ${employee.name.first}" class="employee-photo">
      <div class="employee-name">${employee.name.first} ${employee.name.last}</div>
      <div class="employee-location">${employee.location.city}, ${employee.location.state}</div>
    </li>`
  }
  
  // let's use jQuery's ajax method to keep the code terse.
  // Pull data from randomuser.me as a stub for our 'employee API'
  // (recall that this is really just a fake tweet list).
  $.ajax({
    url: 'https://randomuser.me/api/',
    dataType: 'json',
    // query string parameters to append
    data: {
      results: 3
    },
    success: (data) => {
      // success! we got the data!
      let employees_markup = ''
      data.results.forEach((employee) => {
        employees_markup += employee_markup(employee)
      })
      $('.js-employee-list').append(employees_markup)
    }
  })
})()
              
            
!
999px

Console