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.
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Mario Galindo</a>
</div>
<div id="navbar" class="collapse navbar-collapse navbar-right">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-xs-8">
<div class="starter-template">
<h1>Bootstrap starter template</h1>
<p class="lead">Use this document as a way to quickly start any new project.<br> All you get is this text and a mostly barebones HTML document.</p>
</div>
</div>
<div class="col-xs-4 div-img">
<img class="smaller-image" src="https://scontent-lax3-1.xx.fbcdn.net/v/t31.0-8/329456_419016258145216_392911653_o.jpg?oh=0c133ee88a26bdcd5864f32301ba26a6&oe=591E6A23" alt="Just a picture of me">
</div>
</div>
</div>
<h1 class="text-center">Portfolio</h1>
<div style="padding: 40px" class="row">
<div class="center-block col-xs-6 col-md-3" style="float:none">
<a href="#" class="thumbnail">
<img src="https://upload.wikimedia.org/wikipedia/en/3/3d/Plague_Inc_loading_screen.png" alt="lo que sea">
</a>
<p style="text-align:center"> Thumbnail 1</p>
</div>
<div class="center-block col-xs-6 col-md-3 style="float:none">
<a href="#" class="thumbnail">
<img src="https://upload.wikimedia.org/wikipedia/en/3/3d/Plague_Inc_loading_screen.png" alt="lo que sea">
</a>
<p style="text-align:center"> Thumbnail 1</p>
</div>
body {
padding-top: 50px;
}
.starter-template {
padding: 40px 15px;
text-align: center;
}
.smaller-image{
width:300px;
clip-path: inset(0px 0px 160px 0px);
border-radius:
}
.div-img{
overflow: hidden;
border-radius:
}
.paint{
background-color: yellow;
}
.paint2{
background-color: green;
}
.thumbnails{
text-align: center;
}
div img {
background: blue;
display: inline-block;
}
Also see: Tab Triggers