The Web Design Survival Guide | HTML Example 3

by todaly1

HTML

<!doctype html>
<head>
  <meta charset="UTF-8">
  <title>Title of the document</title>
</head>
<html>
  <body>
    <header>
      <h2>h2 Headline inside the header tag</h2>
    </header>
    <main>
      <section id="section-1">
        <article>
         <div class="column">
          <p>Paragraph inside a div tag named column.</p>
         </div>
         <div class="column">
          <p>Paragraph inside a div tag named column.</p>
         </div>
        </article>
      </section>
    </main>
    <footer>
     <p>Paragraph inside the footer tag.</p>
    </footer>
  </body>
</html>