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

              
                <head>
  <link href="https://fonts.googleapis.com/css?family=Cardo|Space+Mono" rel="stylesheet">
</head>


<div id="wrapper">

<h1>News Headline & True Romance</h1>

<p>
   
  When <span class="cheese">Snoh Aalegra</span> walks into West Hollywood’s Petit Ermitage hotel, people notice. At <span class="cheese">5'10",</span> she is poised and statuesque, immediately striking, with dark, magnetic features. The Iranian-<span class="cheese">Swedish</span> singer carries a natural air of sophistication, <span class="cheese">which is balanced</span> by an evident weight of experience. Just as in her achy soul ballads, beauty and sadness cozy up close in Aalegra’s demeanor. Her story is one of <span class="border">struggle—with</span> love, anguish, and loneliness—defined by the death of her estranged father. Managing to become one of the year’s most promising female artists amidst personal <span class="cheese">tragedy has been a remarkable feat, and you can see it and hear it in everything that she does. She is a comforting counsel,</span> exuding the warmth of an old friend while <span class="border">gracious</span> and unafraid to open up with a rare honesty. Here she talks with Nazanin Shahnavaz about love, loss, and being mentored <span class="cheese">by her idol, Prince.</span>
</p>
</div>




              
            
!

CSS

              
                

h1{
font-family: 'Space Mono', monospace;
  font-size:12vw;
  line-height:90%;
  font-weight:100;
}

p{
  font-family: 'Cardo', serif;
 font-size:18px;
  line-height:29px;
}

#wrapper{
  width:80%;
  margin-left:auto;
  margin-right:auto;
  border:1px solid black;
  padding:10px;
  
}

.cheese{
  background:black;
  padding:5px; 
  }


.cheese:hover{
  background:white;
  padding:5px; 
  }

.border{
padding:5px;
background:blue;
color:blue;  
}

.border:hover{
color:white;  
  }

@media screen and (max-width: 400px) {
   
 p{
  font-family: 'Cardo', serif;
 font-size:30px;
  line-height:39px;
   color:red;
}
 
  
}

              
            
!

JS

              
                
              
            
!
999px

Console