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.
<div class="container-fluid"/>
<div class="box border">
<h1>
A Tribute to Benjamin Franklin
</h1>
<img class="center-block img-responsive col-med-4" src="https://upload.wikimedia.org/wikipedia/commons/c/cc/BenFranklinDuplessis.jpg" alt="Benjamin Franklin" />
<h3 align="center">
A brief timeline of Mr.Franklin's Life
</h3>
<div col-md-6>
<ul>
<li> 1706 - Benjamin Franklin, born in Boston </li>
<li>1717 - Invents a pair of swim fins for his hands </li>
<li> 1720 - Stopped attending church so he could use Sunday to study
</li>
<li> 1744 - Deborah Read, his wife of 44 years, dies in Philadelphia.
</li>
<li>1752 - Conducts kite experiment. </li>
<li> 1753 - Receives honorary degrees from Harvard and Yale.
</li>
<li> 1754 -
Proposes plan of colonial union at Albany Congress. </li>
<li> 1762 - Mapped Postal routes in the colonies. Invents glass armonica.
</li>
<li>1771 - Begins writing his Autobiography.
</li>
<li> 1776 - Presides over Constitutional Convention of PA.
</li>
<li> 1776 - Serves on a committee of five who draft the Declaration of Independence.
</li>
<li> 1779 - Appointed to negotiate peace treaty with England.
</li>
<li>1785 - Invents the instrument for taking down books from a shelf.
</li>
<li>1787 - Signs the United States Constitution.
</li>
<li>1789 - He becomes president of the Society for Promoting the Abolition of Slavery.
</li>
<li> 1790 - April 17, dies in Philadelphia at the age of 84. 20,000 mourners attend his funeral at Philadelphia's Christ Church Burial Ground.
</li>
</ul>
<p class="text-center">
Benjamin Franklin played a crucial role in the founding of of our country. To read more about his life please see his <a href="https://upload.wikimedia.org/wikipedia/commons/c/cc/BenFranklinDuplessis.jpg" target=".blank"> Wikipedia page. </a>
</p>
<h2>
"An investment in knowledge pays the best interest"
</h2>
<p class="text-center">
Coded by <a href="#" target=".blank">
Aaron Bell </a>
</p>
</div>
</div>
h1{
font-family: 'Exo', sans-serif;
font-size: 300%;
color: rgb(0, 33, 71);
text-align: center;
line-height: 50px;
}
h2{
font-family: 'Exo', sans-serif;
line-height: 50px;
font-weight: bold;
text-align: center;
}
img{
border-radius:30px;
margin: 10px;
padding: 25px;
width: 60%;
}
body{
background-color: rgb(187,19,62);
}
.center-block {
display: block;
margin-right: auto;
margin-left: auto;
}
.border{
border-color: rgb(0, 33, 71);
border-style: solid;
border-width: 10px;
border-radius: 20px;
}
.box{
background-color: white;
border-radius: 20px;
color: rgb( 0, 33, 71);
margin: 12%;
}
p{
font-family: 'Arial', sans-serif;
color: rgb(0,33,71);
line-height: 20px;
}
Also see: Tab Triggers