- 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>
      <h1>The website of a beginning coder</h1>
    </header>
    <main>
      <nav>
        Navigation
      </nav>
      <section>
        Greetings to everyone! Welcome to my first site. Up until just recently I had no idea what a coder does for a living, but now I have found interactive courses in HTML and CSS and I have set myself the goal of becoming one. I even was assigned an instructor, Muffin, who does not allow me to slack off and will track my progress.
        My first assignment is to keep a diary and honestly write about all of my accomplishments.
      </section>
      <section>
        Skills section
      </section>
    </main>
    <footer>
      Website footer
    </footer>
  </body>
</html>
You’ve gone to a different page
Goalscompleted
0
Break the text in the first “section” into two paragraphs.
- The first paragraph should consist of the text that starts with the phrase Greetings to everyone!and ends with the wordsmy progress,
- and the second paragraph should consist of the remaining part of the sentence that has not yet been marked up: My first assignment … accomplishments.
Comments