Previous: Semantic HTML lesson
site logo

Learning The Basics of Woodworking

One step at a time!

What are the basics?

Welcome - This is a great page! We will learn a bunch of stuff

Growing Popularity of Woodworking

New York Times released a report on the growing popularity of woodworking, and several studies show that it is fun and good.

What to Expect

This website has all kinds of helpful woodworking information on the about and contact pages. Also the FAQ is great too!

HTML:

<!DOCTYPE html>
<html>
  <body>
    <header>
        <h1>Learning The Basics of Woodworking</h1>
        <p>One step at a time!</p>
    </header>
    <nav>
     <ul>
        <li><a href="about.html">About</a></li> 
        <li><a href="tutorials.html">Tutorials</a></li>
        <li><a href="reference.html">Reference</a></li>
      </ul>
    </nav>
    <main>
      <section>
        <h2>What are the basics?</h2>
        <p>Welcome - This is a great page! We will learn a bunch of stuff</p>
      </section>
      <article>
        <h2>Growing Popularity of Woodworking</h2>
        <p>New York Times released a report on the growing popularity of woodworking, and several studies show that it is fun and good.</p>
      </article>

      <section>
        <h3>What to Expect</h3>
        <p>This website has all kinds of helpful woodworking information on the about and contact pages. Also the FAQ is great too!</p>
      </section>

      <aside>
        <h4>How I learned</h4>
        <p>I was able to do all of this work with the fabulous help of my teachers and friends</p>
      </aside>

    </main> 

    <footer>
        <p>Author: Claire K-V</p>
        <a href="contact.html">Contact</a></li>
        <a href="faq.html">Frequently Asked Questions</a>
    </footer>


  </body>
</html>