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.
<!DOCTYPE html>
<html>
<head>
<title>Portfolio</title>
<!-- css file -->
<link rel="stylesheet" type="text/css" href="portfolio.css">
<!-- link to bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body>
<!-- ***navbar*** -->
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Brand -->
<a class="navbar-brand" href="#">Mikey Bobby <span class="glyphicon glyphicon-tree-conifer"></span></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<!-- about me -->
<li><a href="#">About Me <span class="sr-only">(current)</span></a></li>
<!-- contact -->
<li><a href="#">Contact</a></li>
<!-- portfolio -->
<li class = "active"><a href="#">Portfolio</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- ***jumbotron -->
<div class = "container">
<div class="jumbotron">
<img class = "pull-right img-rounded" src="http://www.stmaryspdx.org/uploaded/images/Support_SMA/Giving/Michael_Scott_headshot_-_website.jpg">
<h1>Welcome to my portfolio!</h1>
<p>Here you can peruse my various web development projects as well as learn more about me on social media.</p>
<!-- social media buttons -->
<a href = "https://github.com/MichaelScott50" type="button" class="btn btn-primary inline-block">GitHub</a>
<a href = "https://codepen.io/Michael_Scott/" type="button" class="btn btn-primary inline-block">Code Pen</a>
<a href = "https://www.freecodecamp.com/michaelscott50" type="button" class="btn btn-primary inline-block">FCC</a>
</div>
</div>
</div>
<!-- access all content just by scrolling -->
<!-- photothumbnail portion with 6 photos -->
<div class = "container">
<h1 class = "text-center">Portfolio</h1>
<hr>
<div class = "row">
<a href="https://codepen.io/Michael_Scott/pen/KaJOyW" class = "col-lg-4 col-md-6 col-xs-12 text-center"><img class = "img-thumbnail img-responsive" src="https://i.imgur.com/roGtUdr.png" alt ="Michael Portfolio Page" style="height:190px;">Portfolio Page</a>
<a href="https://codepen.io/Michael_Scott/pen/rjQJzO" class = "col-lg-4 col-md-6 col-xs-12 text-center"><img class = "img-thumbnail img-responsive" src="https://i.imgur.com/xkWPFMx.png" alt ="Walt Whitman Tribute Page" style="height:190px;">Tribute Page</a>
<a href="#" class = "col-lg-4 col-md-6 col-xs-12 text-center"><img class = "img-thumbnail img-responsive" src="https://www.freeimageslive.co.uk/files/images004/Italy_Venice_Canal_Grande.jpg" alt ="">Blah Blah Blah</a>
<a href="#" class = "col-lg-4 col-md-6 col-xs-12 text-center"><img class = "img-thumbnail img-responsive" src="https://www.freeimageslive.co.uk/files/images004/Italy_Venice_Canal_Grande.jpg" alt ="">Blah Blah Blah</a>
<a href="#" class = "col-lg-4 col-md-6 col-xs-12 text-center"><img class = "img-thumbnail img-responsive" src="https://www.freeimageslive.co.uk/files/images004/Italy_Venice_Canal_Grande.jpg" alt ="">Blah Blah Blah</a>
<a href="#" class = "col-lg-4 col-md-6 col-xs-12 text-center"><img class = "img-thumbnail img-responsive" src="https://www.freeimageslive.co.uk/files/images004/Italy_Venice_Canal_Grande.jpg" alt ="">Coming Soon</a>
</div>
</div>
<!-- footer with buttons for contact -->
<!-- link to jquery to make bootstrap run -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<!-- link to bootstrap javascript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>
Also see: Tab Triggers