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

              
                <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<h1>Eleni Digidiki</h1>
<p>Welcome :)</p>
<p>Feel free to connect with me on Linkedin, browse my portfolio on Behance, scroll through my pins on Pinterest and check what I am sharing on twitter.</p>
<!-- Add font awesome icons -->
<a href="https://linkedin.com/in/elenidigidiki" target="_blank" class="fa fa-linkedin"></a>
<a href="https://www.behance.net/elenidigidiki" target="_blank" class="fa fa-behance"></a>
<a href="https://www.pinterest.ch/elenidigidiki" target="_blank" class="fa fa-pinterest"></a>
<a href="https://twitter.com/elenidigidiki" target="_blank" class="fa fa-twitter"></a>
<p>Need to contact me? Send me an <a href="mailto:contact@elenidigidiki.com">e-mail</a>.</p>
<!-- Add horizontal line -->
<hr style="height:1px;border-width:0;color:#777;background-color:#777">
<!-- Add codepen.io info -->
<p>This page was created with <a href="https://codepen.io/elenidigidiki/pen/PoJQyRE" target="_blank" >html, css, love and coffee</a> &#9749;</p>
              
            
!

CSS

              
                body {
  font-family: Helvetica, sans-serif;
  background-color: black;
  padding: 10px 20px;
}
h1 {
  color: white;
}
p {
  color: #777;
}
/* Style the font awesome icons */
.fa {
  padding: 20px;
  font-size: 30px;
  width: 20px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}
.fa:hover {
  opacity: 0.7;
}
.fa-linkedin {
  background: #007bb5;
  color: white;
}
.fa-pinterest {
  background: #cb2027;
  color: white;
}
.fa-twitter {
  background: #55acee;
  color: white;
}
.fa-behance {
  background: white;
  color: black;
}

              
            
!

JS

              
                

              
            
!
999px

Console