JavaScript preprocessors can help make authoring JavaScript easier and more convenient. For instance, CoffeeScript can help prevent easy-to-make mistakes and offer a cleaner syntax and Babel can bring ECMAScript 6 features to browsers that only support ECMAScript 5.
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.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
HTML Settings
Here you can Sed posuere consectetur est at lobortis. Donec ullamcorper nulla non metus auctor fringilla. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Praesent commodo cursus magna, vel scelerisque nisl consectetur et.
<header>
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Lobster" />
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"/>
</header>
<div class="container-fluid">
<ul class="nav nav-pills navbar-fixed-top navbar-inverse text-">
<li>
<a class="nav nav-pills" href="#">Slater's Portfolio</a>
</li>
<li>
<a href="#about">About Me</a>
</li>
<li>
<a href="#portfolio">Portfolio</a>
</li>
<li>
<a href="#contact">Contact Information</a>
</li>
</div>
<div class="pageOne">
<div class="block text-center text-primary">
<h1>Slater's Space</h1>
<h2>"Coding isn't what I do, coding is who I am."<h2>
</div>
</div>
<div>
<a name='top'></a>
<a name="about"></a>
<div class="pageTwo">
<div class="container-fluid">
<div class="row">
<div class="col-xs-8 col-md-6 col-xs-push-1">
<h1>About Me<h1>
</div>
</div>
<div class="row">
<div class="col-xs-8 col-md-4 col-xs-push-1">
<p class="text-white">I am a Front-End Developer and UX/UI designer, with practical experience in project management, branding strategy, and creative direction; devoted to functional programming and information architecture.</p></div>
<div class="col-md-3 col-xs-push-3">
<img class="spotlight thin-black-border" alt="Image may contain: 2 people" aria-busy="false" src="https://scontent-sjc2-1.xx.fbcdn.net/v/t1.0-9/15590131_10211994585406784_5216058174224179729_n.jpg?oh=1cb0bd4e27cec69195130f9bde82f5b7&oe=59E7BF74"></img>
</div>
</div>
</div>
</div>
<a name='portfolio'></a>
<div class="pageThree">
<h1 class="text-center">Projects</h1>
<p class="text-center">COMING SOON!</p>
</div>
<a name='contact'></a>
<div class="pageFour">
<div class='spacer'></div>
<div class="block2">
<div class="text-center">
<h1>Contact Info</h1>
</div>
<div class="btnlist text-center">
<a class="btn btn-default" target='_blank' href="https://www.linkedin.com/in/slater-elkind-35279b97/">LinkedIn</a>
<a class="btn btn-default" target='_blank'href='https://www.facebook.com/slater.elkind'>Facebook</a>
<a class="btn btn-default" target='_blank' href='https://github.com/ACSlater8'>Github</a>
</div>
</div>
</div>
.nav-pills{
font-size: 24px;
}
body{
font-family: Lobster;
overflow-x: hidden;
}
h1{
font-size: 7.0em;
}
.btn-default{
background-color:black;
font-size: 1.7em;
color: white;
}
.pageOne{
background:url("https://images.unsplash.com/photo-1485813727108-9b009dfab116?dpr=1&auto=format&fit=crop&w=1080&h=608&q=80&cs=tinysrgb&crop=&bg=");
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size:cover;
height: 800px;
background: responsive;
}
.pageTwo {
background:url("https://images.unsplash.com/photo-1460602594182-8568137446ce?dpr=1&auto=format&fit=crop&w=1080&h=715&q=80&cs=tinysrgb&crop=&bg=");
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size:cover;
height: 800px;
padding-top: 15%;
}
p{
font-size: 2.5em;
}
img{
height: 300px;
}
.thin-black-border {
border-color: black;
border-width: .1px;
border-style: solid;
border-radius: 50%;
}
.pageThree {
background:url("https://images.unsplash.com/photo-1460602692976-8eab38c11f9d?dpr=1&auto=compress,format&fit=crop&w=767&h=508&q=80&cs=tinysrgb&crop=&bg=");
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size:cover;
height: 800px;
padding-top: 5%;
}
.pageFour {
background:url("https://images.unsplash.com/photo-1495917173832-4970d3c2a009?dpr=1&auto=format&fit=crop&w=1080&h=715&q=80&cs=tinysrgb&crop=&bg=");
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size:cover;
height: 400px;
padding-top: 10%;
}
.block{
padding-top:25%;
}
.block2{
background: rgba(0,0,0, .8);
color: white;
width: 75%;
margin-right: auto;
margin-left: auto;
border-radius: 15px;
}
Also see: Tab Triggers