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.
<!--
Hello Camper!
Please read the README below in the JS Editor before beginning. Feel free to delete this message once you have read it. Good luck and Happy Coding!
- The freeCodeCamp Team
-->
<main id="main">
<h1 id="title">Nnamdi Azikiwe (1904 - 1996)</h1>
<p style="text-align:center"> The First President of Nigeria</p>
<div id="img-div">
<figure>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/07/Nnamdi_Azikiwe_PC.jpg/220px-Nnamdi_Azikiwe_PC.jpg" id="image" />
<figcaption id="img-caption">
Nnamdi Azikiwe circa 1963
</figcaption>
</figure>
</div>
<article id="tribute-info">
<h2>Lifetime</h2>
<ul>
<li><strong>1904:</strong> Azikiwe was born on 16 November 1904 in Zungeru, Northern Nigeria.</li>
<li><strong>1914:</strong> In 1914, while his father was working in Lagos, Azikiwe was bitten by a dog; this prompted his worried father to ask him to come to Lagos to heal and to attend school in the city. </li>
<li><strong>1918:</strong> In 1918, he was back in Onitsha and finished his elementary education at CMS Central School. Azikiwe then worked at the school as a student-teacher, supporting his mother with his earnings</li>
<li><strong>1927:</strong> To fund his living expenses and tuition, he worked a number of menial jobs before enrolling in Howard University in Washington, D.C. in 1927 to obtain a Bachelor’s degree in Political Science.</li>
<li><strong>1934:</strong> By 1934, when Azikiwe returned to Lagos, he was well-known and viewed as a public figure by some members of the Lagos and Igbo community. He was welcomed home by a number of people, as his writings in America evidently reached Nigeria. He was given a free hand to run the newspaper, and recruited many of its original staff. Azikiwe wrote "The Inside Stuff by Zik", a column in which he preached radical nationalism and black pride which raised some alarm in colonial circles.</li>
<li><strong>1941:</strong> zikiwe became active in the Nigerian Youth Movement (NYM), the country's first nationalist organization. Although he supported Samuel Akisanya as the NYM candidate for a vacant seat in the Legislative Council in 1941, the NYM executive council selected Ernest Ikoli</li>
<li><strong>1951: </strong> The Macpherson constitution took effect in 1951 and, like the Richards constitution, called for elections to the regional House of Assembly. Azikiwe opposed the changes, and contested for the chance to change the new constitution</li>
<li><strong>1960: </strong> Azikiwe became governor-general on 16 November 1960</li>
<li><strong>1979: </strong> After the war, Azikiwe was chancellor of the University of Lagos from 1972 to 1976. He joined the Nigerian People's Party in 1978, making unsuccessful bids for the presidency in 1979 and 1983.</li>
<li><strong>1983: </strong>He left politics involuntarily after the 31 December 1983 military coup.</li>
<li><strong>1996: </strong>Azikiwe died aged 91 on 11 May 1996 at the University of Nigeria Teaching Hospital in Enugu after a long illness, and is buried in his native Onitsha</li>
</ul>
</article>
<p id="footer"> To read his full history click here to go to his <a href="https://en.wikipedia.org/wiki/Nnamdi_Azikiwe" target="_blank" id="tribute-link">Nnamdi Azikiwe Wikipedia entry</a></p>
</main>
#main{
font-family: Candara;
background-color:#ebd8db;
color: #406098;
font-weight:200;
}
#title{
text-align: center;
}
#img-div{
}
#image{
margin:auto;
display:block;
max-width: 100%;
height: auto;
}
#img-caption{
text-align: center;
}
#tribute-info{
line-height:2;
font-size:17px;
}
#footer{
color:#000036;
font-weight: 700;
font-family: serif;
text-align:center;
font-size:20px;
}
// !! 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