- index.html
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>The website of a beginning coder</title>
<link rel="stylesheet" href="outlines.css">
</head>
<body>
<header>
<!-- Add a navigation block here -->
</header>
<main>
<!--
Day One. How I forgot to feed the cat.
Who would have thought that semantics was so important? I had an urgent need to talk about it. The cat caught my attention. The cat insistently meowed at me. And then I realized – it’s time for me to write the first blog entry. And to feed the cat.
-->
</main>
<footer>
Website footer
</footer>
</body>
</html>
You’ve gone to a different page
Goalscompleted
0
- Add the
<nav>
tag with the textReturn to home
to the website header. - Uncomment the text inside
<main>
tag, - and then enclose all of it using
<article>
tags.
Comments