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 URL's 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 it's URL and the proper URL extention.
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 Skypack, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ES6 import
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.
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<header>
<span class="mainTitle">Tribute to <b>Elon Musk</b></span>
<nav>
<ul>
<li>Home</li>
<li>Main</li>
<li>Item</li>
</ul>
</nav>
</header>
<main id="main">
<section id="title">
<article id="mainArticle">
<div id="img-div">
<img id="image" alt="Musk at the Royal Society admissions day in London, July 2018" src="https://upload.wikimedia.org/wikipedia/commons/e/ed/Elon_Musk_Royal_Society.jpg">
<div id="img-caption">Founder, CEO, lead designer of SpaceX
CEO, product architect of Tesla, Inc.
Founder of The Boring Company and X.com (now PayPal)
Co-founder of Neuralink, OpenAI, and Zip2
Chairman of SolarCity
</div>
</div>
<div id="tribute-info">
<h2>Elon Musk</h2> <i> - Founder, CEO, lead designer of SpaceX</i>
<p> Musk was born to a Canadian mother and South African father and raised in Pretoria, South Africa. He briefly attended the University of Pretoria before moving to Canada when he was 17 to attend Queen's University.</p>
<p>He transferred to the University of Pennsylvania two years later, where he received dual bachelor's degrees in economics and physics. He moved to California in 1995 to begin a Ph.D. in applied physics and material sciences at Stanford University, but dropped out after two days to pursue a business career.</p>
<p>He co-founded Zip2, a web software company, which was acquired by Compaq for $307 million in 1999. Musk then founded X.com, an online bank. It merged with Confinity in 2000, which had launched PayPal the previous year and was subsequently bought by eBay for $1.5 billion in October 2002.</p>
You can <a id="tribute-link" href="" target="_blank">read more about Elon Musk here.</a>
</div>
</article>
</section>
<aside>
<article>
<h4>Future Mars Missions</h4>
<table>
<tr>
<th>Mission</th>
<th>Organization</th>
<th>Launch</th>
<th>Type</th>
</tr>
<tr>
<td>ExoMars 2022</td>
<td>ESA</td>
<td>2022</td>
<td>Lander, rover</td>
</tr>
<tr>
<td>Mars Terahertz Microsatellite</td>
<td>JAPAN</td>
<td>2022</td>
<td>Orbiter, lander</td>
</tr>
<tr>
<td>Demo mission</td>
<td>SpaceX</td>
<td>2022</td>
<td>Lander, cargo</td>
</tr>
<tr>
<td>Crewed mission</td>
<td>SpaceX</td>
<td>2024</td>
<td>Lander, cargo, crew</td>
</tr>
</table>
</article>
<article>
<h4>Future Mars Missions</h4>
<table>
<tr>
<th>Mission</th>
<th>Organization</th>
<th>Launch</th>
<th>Type</th>
</tr>
<tr>
<td>ExoMars 2022</td>
<td>ESA</td>
<td>2022</td>
<td>Lander, rover</td>
</tr>
<tr>
<td>Mars Terahertz Microsatellite</td>
<td>JAPAN</td>
<td>2022</td>
<td>Orbiter, lander</td>
</tr>
<tr>
<td>Demo mission</td>
<td>SpaceX</td>
<td>2022</td>
<td>Lander, cargo</td>
</tr>
<tr>
<td>Crewed mission</td>
<td>SpaceX</td>
<td>2024</td>
<td>Lander, cargo, crew</td>
</tr>
</table>
</article>
</aside>
</main>
<footer>
<p>©2020 Example. All other trademarks and brand names are the property of their respective owners.</p>
</footer>
</body>
body{
margin: 0px;
font-family: Arial, Helvetica, sans-serif;
font-size: 1.5em;
line-height: 28px;
}
header{
display: flex;
flex-direction: row;
justify-content: space-between;
align-content: center;
padding: 0;
margin: 0;
background-color: #09191B;
color: white;
}
.mainTitle{
margin-left: 1em;
padding: 2em;
}
nav{
align-self: center;
}
ul{
display: flex;
align-content: center;
}
li{
list-style-type: none;
margin-right: 3em;
align-self: center;
font-size: 1rem;
}
/*Main related*/
main{
margin: 1vw 2vw;
display: grid;
grid-template-columns: 2fr 1fr;
justify-content: space-between;
padding: 2vw;
}
section{
grid-template-columns: 2fr;
}
aside{
grid-template-columns: 1fr;
}
aside article{
background-color: #fdfdfd;
padding: 1vw;
border-width: 1px;
border-color: #969696;
border-style: solid;
margin-bottom: 1vw;
font-size: 0.7em;
}
#mainArticle{
display: flex;
flex-direction:row-reverse;
}
#img-div{
display: flex;
align-content: center;
margin: 0vw 1vw;
flex-direction: column;
width: auto;
}
#image{
width: 20rem;
height: auto;
}
img{
width:100%;
margin: auto;
max-width: 1000px;
}
#img-caption{
margin: 0.5vw 1vw;
font-size: 0.8em;
}
#tribute-info{
margin: 1vw 0vw;
}
#tribute-info i{
font-size: 1.2rem;
}
footer{
color: white;
background-color: #09191B;
padding: 0.5vw 0vw;
text-align: center;
font-size: 0.8em;
}
@media (max-width: 350px) {
table{
font-size: 1em;
}
*{
font-size: 0.9em;
}
#image{
width: 70%;
}
}
/*Mobile responsive*/
@media (max-width: 862px) {
#mainArticle{
flex-direction: column;
}
#img-caption{
margin: 1vw;
}
main{
grid-template-columns: 1fr;
margin: 1vw 0vw;
padding: 0;
}
.mainTitle{
font-size: 0.5em;
margin: auto;
}
nav ul, ul li{
font-size: 0.7em;
margin-right: 10px;
display: none;
}
aside{
width: 100%;
text-align: center;
margin-top: 5vh;
}
aside table{
margin: 0 auto;
}
}
@media (max-width: 1600px) {
main{
grid-template-columns: 1fr;
margin: 4vw 1vw;
}
aside{
justify-self: center;
text-align: center;
margin-top: 5vh;
}
}
@media (min-width: 2400px) {
body{
font-size: 1.5rem;
line-height: 1vw;
}
aside{
width: auto;
}
aside article{
width: auto;
}
aside article table{
width: 50%;
margin: auto;
}
}
// !! IMPORTANT README:
// You may add additional external JS and CSS as needed to complete the project, however the current external resource MUST remain in place for the tests to work. BABEL must also be left in place.
/***********
INSTRUCTIONS:
- Select the project you would
like to complete from the dropdown
menu.
- Click the "RUN TESTS" button to
run the tests against the blank
pen.
- Click the "TESTS" button to see
the individual test cases.
(should all be failing at first)
- Start coding! As you fulfill each
test case, you will see them go
from red to green.
- As you start to build out your
project, when tests are failing,
you should get helpful errors
along the way!
************/
// PLEASE NOTE: Adding global style rules using the * selector, or by adding rules to body {..} or html {..}, or to all elements within body or html, i.e. h1 {..}, has the potential to pollute the test suite's CSS. Try adding: * { color: red }, for a quick example!
// Once you have read the above messages, you can delete all comments.
Also see: Tab Triggers