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

              
                <h1>I help <span class="target-plural">startups</span> deliver more meaningful work. </h1>
  
  
    <form class="course-opt-in">
      <h4>Sign up for our free 5-day email course:</h4>
      <input type="email" />
      <input type="submit" value="Get lesson 1 today" />
    </form>
<p> Change the string on line 32 of the JS file to change this page.</p>
              
            
!

CSS

              
                html, body {
  text-align: center; 
  font-family: helvetica, sans-serif;
}

              
            
!

JS

              
                /* Converts a query string into an object. 
 * example input:  ?src=agency
 * results: { src: "agency" }
 */
function parseQuery(str) {
  //Remove '?' from beginning.
  str = str.substring(1) 
  //split the string into key value pairs
  var pairs = str.split("&")
  //convert them into an object
  return pairs.reduce(function(map, pair) {
      console.log(pair)
      var kv = pair.split("=")
      var key = kv[0]
      var value = kv[1]
      map[key] = value
      return map
  },{})
}

//This function will change certain keywords on the page
function updatePlurals(text) {
  var targets = document.querySelectorAll(".target-plural"); 
  for(var i = 0; i < targets.length; i++) {
    targets[i].innerText = text;  
  }
}

//How to get the data from the browser for real:
var query = window.location.search
//Since this is a codepen, we'll have to mock it out. Change this string to change the page.
query = "?src=agency&subscriber=1"
var profile = parseQuery(query)

//Don't bug current subscribers with an email form. 
if(profile.subscriber) {
  document.querySelector(".course-opt-in").style.display = "none"
}

//Personalize the headline
switch(profile.src) {
  case "agency":
    updatePlurals("agencies")
    break
  case "freelancer":
    updatePlurals("freelancers")
    break
   case "startup":
   default:
    updatePlurals("startups")
    break   
}
              
            
!
999px

Console