- 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>
      <nav>
        Return to home
      </nav>
    </header>
    <main>
      <article>
        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.
      </article>
      <aside>
        Your ad could go here
      </aside>
    </main>
    <footer>
      Website footer
    </footer>
  </body>
</html>
You’ve gone to a different page
Goalscompleted
0
- Format the text Day One. How I forgot to feed the cat.as a first level heading.
- Add the paragraph with the text Blogto the website header before the navigation block.
- Break the remaining text of the blog post into two paragraphs. Add the block of text that begins with the phrase Who wouldand ends with the wordto talk about itto the first paragraph.
- Include the text that starts with The cat caught my attentionand ending withAnd to feed the cat.
Comments