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.
<section class="bar">
<p>Bacon ipsum dolor sit amet short ribs ribeye corned beef rump turducken fatback sausage shankle meatloaf ham hock beef, sirloin doner. Beef salami pastrami, venison shoulder chuck andouille meatball tri-tip short loin tail boudin filet mignon. Chuck tongue strip steak fatback. Filet mignon jerky shoulder chuck. Pig drumstick leberkas pancetta shankle venison short loin meatball ball tip. Beef rump biltong boudin tail meatloaf t-bone pancetta leberkas sausage filet mignon. Ribeye kielbasa brisket pork belly, pancetta tri-tip corned beef ham turducken tail frankfurter ham hock.</p>
<ul>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
<li>List item 4</li>
</ul>
</section>
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
color: #fff;
font: normal 16px/1.5em Arial, sans-serif;
}
.bar {
max-width: 800px;
background: #333;
text-align: justify;
padding: 10px calc(50% - 400px);
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
}
Also see: Tab Triggers