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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Aristides de Sousa Mendes</title>
<link href="https://fonts.googleapis.com/css?family=Dancing+Script|Quicksand" rel="stylesheet">
</head>
<body>
<!--HEADER-->
<div class="header">
<h2>Aristides de Sousa Mendes</h2>
<h5><i>In Memoriam</i></h5>
<h5>1885 - 1954</h5>
</div>
<!--BIO-->
<div class="bio-layout">
<div class="portrait"></div>
<div class="text-layout">
<p>Aristides de Sousa Mendes was a Portuguese consul during World War II. As the consul-general in the French city of Bordeaux, he defied the anti-immigration policies of Salazar’s dictatorial regime in Portugal, issuing visas and passports to approximately 30,000 refugees seeking to escape the terror in Germany.</p>
</div>
</div>
</body>
body {
background-color: rgb(54, 50, 48);
margin: 0;
}
/*HEADER*/
.header {
background-color: rgb(222, 185, 149);
width: 100%;
margin-top: 50px;
display: flex;
flex-direction: column;
text-align: center;
}
.header h2 {
font: 50px 'Dancing Script', cursive;
margin: 0;
}
.header h5 {
font: 20px 'Quicksand', sans-serif;
margin: 0;
}
/*BIO*/
.bio-layout {
background-color: rgb(82, 124, 108);
margin: auto;
border-radius: 0 0 20px 20px;
display: flex;
flex-direction: row;
width: 80%;
}
.bio-layout .portrait {
background-image: url(https://imagens.publicocdn.com/imagens.aspx/1042071?tp=UH&db=IMAGENS);
background-size: cover;
width: 200%;
height: 500px;
}
.bio-layout p {
font: 20px/1.8 'Quicksand', sans-serif;
color: rgb(240, 248, 255);
text-align: justify;
padding: 10% 10%;
}
Also see: Tab Triggers