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 just some random text. 

We can tag it, but we don't have to.

Notice that the browser does not honor any whitespace, except 
single
    whitespace
      characters.

<h6>It doesn't honor ENTERs and TABs.</h6>
<h3>It doesn't honor ENTERs and TABs.</h3>
<h1>It doesn't honor ENTERs and TABs.</h1>
<div>It doesn't honor ENTERs and TABs.</div>
<br>
<br>
<br>
<hr>

  
              
            
!

CSS

              
                div { background: orange; border: 1px solid tomato }

/*
HTML Conclusions: 
3. HTML elements have an opening tag: <>, and a closing tag: </>
4. Some HTML elements only have an opening tag. No need to close a <br> or an <hr>!

CSS Conclusions:
1. CSS is used to make a web page better-looking.
2. This is achieved using CSS declarations. This is a "formula" for a CSS declaration:

target {
  property: value;
  property: value;
}

In our example:
- the first target is the <div> element.  
- the first property is the "background" property.
- the value on the first property is "plum". It is a named HTML color.
- there are many named HTML colors, we'll be using only food-named colors here. There are about 10 of those.
- the second property is the "border" property.
- the value on the "border" property is "1px solid blue". As we can see here, this property has 3 values. This is sometimes possible in CSS.
- To remove all the borders simply use: "border: none" property-value pair.
*/
              
            
!

JS

              
                
              
            
!
999px

Console