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>Solve the CAPTCHA to continue. You have to enter a word, not a number. Once written, come out of the textbox by pressing a <kbd>Tab</kbd> key.</p>
<form>
  <label>
    <strong id="captchaLabel"></strong>
    <input type="text" id="captchaText" />
    <p></p>
  </label>
  <input type="submit" value="Submit Form" />
</form>
              
            
!

CSS

              
                * {font-family: 'Segoe UI';}
label, strong {font-weight: 600; display: block;}
kbd {font-family: 'Consolas', 'Monaco', monospace; font-size: 0.8em; border: 1px solid #ccc; padding: 2px 5px; border-radius: 3px; box-shadow: 0 0 1px rgba(0, 0, 0, 0.75);}
form > input {border: 1px solid #ccc; font-size: 0.8em; cursor: pointer;}
form > input[disabled] {cursor: not-allowed; color: #999;}
              
            
!

JS

              
                // Execute when page is loaded.
$(function () {
  // Questions & Answers.
  var qa = [
    ["What is the colour of Orange?", "orange"],
    ["What is fifteen divided by five?", "three"],
    ["Which side does the sun rise?", "east"],
    ["What is the fifth letter of alphabets?", "e"],
    ["Which planet is the first one in our Solar System?", "mercury"],
    ["What is three minus two?", "one"]
  ];
  // Disable the input.
  $("form > input").prop("disabled", true);
  // Get a random question.
  var rndQA = qa[Math.trunc(Math.random(0, 1) * qa.length)];
  // Set the label.
  $("#captchaLabel").text(rndQA[0]);
  // Add the event listener.
  $("#captchaText").blur(function () {
    // Verify CAPTCHA.
    var userAns = this.value.toLowerCase();
    var rightAns = rndQA[1];
    if (userAns == rightAns) {
      // User is a human.
      $(this).next("p").text("You solved it!");
    } else {
      // User is a computer.
      $(this).next("p").text("Go away bot!");
    }
    $("form > input").prop("disabled", (userAns != rightAns));
  });
});
              
            
!
999px

Console