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.
<body>
<div class="container-fluid">
<div class="row">
<!--left-panel-->
<div class="col-md-5 bkg_img">
<div class="thumbnail text-center tesla_div">
<img src="https://teslauniverse.com/sites/default/files/styles/full_width/public/images/30.jpg?itok=2k0NNZbE" alt="Nikola Tesla" class="img-responsive">
<div class="caption text_box">
<h3>NIKOLA TESLA</h3>
</div>
</div>
</div>
<!--Right panel-->
<div class="col-md-7 sd_col">
<!--Heading-->
<div class="jumbotron evil_title text-center">
<h2>"The A.C in CIRCUIT"</h2>
</div>
<hr class="big_hr" style="color: #16a085;"/>
<!--Biography-->
<div class="row biography">
<div class="col-sm-12 ent">
<div class="bkg_"><h3 class="text-left">BIOGRAPHY</h3></div>
<p>Born in the month of July 1856 in what is now Croatia, Nikola Tesla Relocated to America and became a citizen, worked with <span style="color: red;"><em>Thomas Edison</em></span> and has a lot of patents to his name, He is famously known for inventing the Alternating Current Circuit which is mostly used in most homes today. He died in New York City on January 7, 1943 leaving a lot of legacy amongst which the 'Tesla Coil' is one.
</p>
</div>
</div><!--ends entrepreneur-->
<!--Digital marketing-->
<div class="row career">
<div class="col-sm-12 ent">
<h3 class="text-right">CAREER</h3>
<p>
Tesla amongst many things was regarded as an electrical engineer, mechanical engineer, physicist and often seen as a futurist(due to his insights and inventions that were way ahead of his time). He worked with Thomas Edison and improved on most of Edison's work, He also worked with <span style="color: red;"><em>George Westinghouse</em></span> who took interest in tesla's alternating circuit design with intent on powering the nations of the United States. During this period, tesla patented many inventions among which was the tesla coil.
</p>
</div>
</div><!--Ends digital marketing-->
<!--Data Science-->
<div class="row legacy">
<div class="col-sm-12 ent">
<h3 class="text-left">LEGACY</h3>
<p>
Towards the later days of his life tesla became reclusive and was obsessed about wirelessly transmitting energies and powering the world which became known as the <span style="color: red;"><em>WardenClyfe Project</em></span> . Often his activities would draw the abusive threats of neighbours and the security agencies based on his ambitious works. Legend has it that he even communicated with pigeons, A strange genius but nonetheless one ahead of his Time..NIKOLA TESLA
</p>
</div>
</div><!--ends data science-->
<a href="https://www.biography.com/people/nikola-tesla-9504443">
<div class="text-center"><p style="color: #e74c3c;">Learn more about Tesla here</p></div>
</a>
</div>
</div>
</body>
</html>
@import url('https://fonts.googleapis.com/css?family=Amita|Roboto|Lobster+Two|Zilla+Slab+Highlight');
/*font-family: 'Amita', cursive;*/
body, html{
margin: 0px;
}
.bkg_img{
/*position: fixed;*/
}
.tesla_div{
height: 100%;
box-shadow: 0 4px 2px 4px rgba(0, 0, 0, 0.1);
}
img{
-webkit-filter: blur(1px) ;
filter: blur(1px)
}
.text_box{
background-color: black;
max-width: 70%;
opacity: 0.3;
}
.text_box h3{
font-weight: bold;
color: #fff;
font-family: 'Amita', cursive;
}
.caption {
position: absolute;
top: 80%;
left: 32%;
/*width: 100%;*/
}
.evil_title{
padding-top: 10px;
background-color: white;
height:80px;
}
.evil_title h2{
color: #34495e;
font-weight: bold;
letter-spacing: 1px;
font-family: 'Lobster Two', cursive;
}
.big_hr{
border: 1px;
height: 1px;
background-color:#bdc3c7 ;
}
p {
font-size: 16px;
font-family: 'Roboto', sans-serif;
letter-spacing: 1px;
}
h3{
font-family: 'Lobster Two', cursive;
}
.biography {
background-color:white;
box-shadow: 2px 2px 5px #bdc3c7; /*blue*/
margin: 20px 0px 20px 30px;
}
.biography h3 {
color: #34495e;
}
.career{
box-shadow: 2px 2px 5px #bdc3c7; /*blue*/
margin: 20px 0px 20px 30px;
}
.career h3{
color: #34495e;
}
.legacy{
background-color:white;
box-shadow: 2px 2px 5px #bdc3c7;/*teal*/
margin: 20px 0px 20px 30px;
}
.legacy h3{
color: #34495e;
}
Also see: Tab Triggers