HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
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.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<div class="container">
<div class="avery">
<div class="star-spin"></div>
<div id="overlay"><img src="https://agbales.github.io/new-yorker-avery/images/avery.png"></div>
<div id="spacer-top"></div>
<div id="spacer-right"></div>
<div id="spacer-left"></div>
</div>
<div class="credit">
ILLUSTRATION BY SIMON PRADES
</div>
<div class="text">
A<i>rgosy</i> began in 1882 as a magazine for children and ceased publication ninety-six years later as soft-core porn for men, but for ten years in between it was the home of a true-crime column by Erle Stanley Gardner, the man who gave the world Perry Mason. In eighty-two novels, six films, and nearly three hundred television episodes, Mason, a criminal-defense lawyer, took on seemingly guilty clients and proved their innocence. In the magazine, Gardner, who had practiced law before turning to writing, attempted to do something similar—except that there his “clients” were real people, already convicted and behind bars. All of them met the same criteria: they were impoverished, they insisted that they were blameless, they were serving life sentences for serious crimes, and they had exhausted their legal options. Gardner called his column “The Court of Last Resort.”<a href="http://www.newyorker.com/magazine/2016/01/25/dead-certainty" target="_blank">Read Article</a>
</div>
</div>
@import url(https://fonts.googleapis.com/css?family=Kanit:700,300);
@import url(https://fonts.googleapis.com/css?family=EB+Garamond);
body {
background-color: #fff;
margin: 50px;
}
a {
text-decoration: none;
color: #446CB3;
margin: 0px 5px;
}
.avery {
float: left;
height: 500px;
width: 355px;
margin: 0px 90px 50px 0px;
background-color: #22313F;
}
.avery img {
height: 500px;
}
.container {
max-width: 1200px;
}
.credit {
position: absolute;
top: 0;
left: 0;
font-family: 'Kanit', sans-serif;
font-size: 1.2em;
font-weight: 300;
color: #777;
line-height: 1.5em;
margin: 560px 50px;
}
#overlay {
position: absolute;
top: 0;
left: 0;
margin: 50px;
z-index: 3;
}
#spacer-top {
position: absolute;
top: 0;
left: 0;
height: 70px;
width: 100%;
background-color: #fff;
margin: -20px 0px;
}
#spacer-right {
position: absolute;
top: 0;
left: 0;
height: 550px;
width: 90px;
background-color: #fff;
margin: 50px 405px;
}
#spacer-left {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 50px;
background-color: #fff;
margin: 0px;
}
.star-spin {
position: absolute;
top: 0;
left: 0;
background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/387928/star-background.jpg);
margin: -50px -60px;
width: 550px;
height: 550px;
border-radius: 50%;
-webkit-filter: blur(1px);
-moz-filter: blur(1px);
-o-filter: blur(1px);
-ms-filter: blur(1px);
filter: blur(1px);
-webkit-filter: brightness(.7);
-moz-filter: brightness(.7);
-o-filter: brightness(.7);
-ms-filter: brightness(.7);
filter: brightness(.7);
-webkit-animation: spin 38s linear infinite;
-moz-animation: spin 38s linear infinite;
-ms-animation: spin 38s linear infinite;
animation: spin 38s linear infinite;
}
.text {
font-family: 'EB Garamond', serif;
font-size: 1.4em;
text-align: justify;
line-height: 1.7em;
max-width: 1100px;
margin: 25px 0px;
}
.text::first-letter {
font-family: 'Kanit', sans-serif;
font-size: 6em;
font-weight: 700;
float: left;
line-height: 80px;
padding: 20px 10px 0px 0px;
}
@-ms-keyframes spin {
from { -ms-transform: rotate(0deg); }
to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
from { -moz-transform: rotate(0deg); }
to { -moz-transform: rotate(360deg); }
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@-webkit-keyframes spin {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(360deg); }
}
/*
Inspired by:
"Dead Certainty:
How 'Making a Murderer' goes wrong."
By Kathryn Schulz
Illustration: Simon Prades
The New Yorker: http://www.newyorker.com/magazine/2016/01/25/dead-certainty
*/
Also see: Tab Triggers