<!DOCTYPE html>
<html lang="en">
    <head>
        <title>nav Tag Example</title>
    </head>
    <body>
        <header>
            <h1>Web Page Title</h1>
        </header>
        <nav>
            <ul>
                <li><a href="/">Home</a></li>
                <li><a href="/about">About Us</a></li>
                <li><a href="/services">Services</a></li>
                <li><a href="/contact">Contact</a></li>
            </ul>
        </nav>
        <main>
            <article>
                <h2>Main Content Title</h2>
                <p>Main content goes here...</p>
            </article>
        </main>
        <aside>
            <h3>Additional Information</h3>
            <p>This is part of the main content of the page.</p>
        </aside>
        <footer>
            <p>© copyright Web Page</p>
        </footer>
    </body>
</html>
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>nav Tag Example</title>
    </head>
    <body>
        <header>
            <h1>Web Page Title</h1>
            <p> <!-- This group of links is supplementary reference links,
                     not considered the site's main navigation area. -->
                <a href="news.html">News</a> -
                <a href="blog.html">Blog</a> -
                <a href="forums.html">Forums</a>
            </p>
            <p>Last updated: <span>2025-04-01</span></p>
            <nav> <!-- Considered the primary navigation area -->
                <ul>
                    <li><a href="/">Home</a></li>
                    <li><a href="/about">About Us</a></li>
                    <li><a href="/services">Services</a></li>
                    <li><a href="/contact">Contact</a></li>
                </ul>
            </nav>
        </header>
        <main>
            <article>
                <h2>Main Content Title</h2>
                <p>Main content goes here...</p>
            </article>
        </main>
        <aside>
            <h3>Additional Information</h3>
            <p>This is part of the main content of the page.</p>
        </aside>
        <footer>
            <p>© copyright Web Page</p>
        </footer>
    </body>
</html>
<nav>
    <ul>
        <li><a href="/">Home</a></li>
        <li><a href="/about">About Us</a></li>
        <li><a href="/services">Services</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
</nav>
<nav>
    <ul>
        <li><a href="#all">All</a></li>
        <li><a href="#tech">Tech</a></li>
        <li><a href="#lifestyle">Lifestyle</a></li>
        <li><a href="#travel">Travel</a></li>
    </ul>
</nav>

<!-- Blog Content Sections -->
<section id="all">
    <!-- All category posts -->
</section>
<section id="tech">
    <!-- Tech category posts -->
</section>
<section id="lifestyle">
    <!-- Lifestyle category posts -->
</section>
<section id="travel">
    <!-- Travel category posts -->
</section>
<nav>
    <ol>
        <li><a href="/">Home</a></li>
        <li><a href="/products">Products</a></li>
        <li><a href="/products/category1">Category 1</a></li>
        <li aria-current="page">Current Page</li>
    </ol>
</nav>
<nav>
    <ul>
        <li><a href="/page/1">Previous</a></li>
        <li><a href="/page/2">2</a></li>
        <li><a href="/page/3">3</a></li>
        <li><a href="/page/4">4</a></li>
        <li><a href="/page/5">5</a></li>
        <li><a href="/page/6">Next</a></li>
    </ul>
</nav>
<nav>
    <h3>Navigation</h3>
    <p>
        You are on my homepage.  
        To the north, there is <a href="/blog">my blog</a>, 
        and sounds of activity can be heard. To the east, a large mountain is visible, 
        where <a href="/school">school projects</a> are scattered.  
        On the mountain, a small figure resembling me seems to be frantically working 
        on a <a href="/school/thesis">thesis</a>.
    </p>
    <p>
        To the west, there are several exits.  
        One exit, labeled "Games", looks fun, while another, labeled "ISP", looks less interesting.
    </p>
    <p>
        To the south, there is a dark, quiet <a href="/about">Contact Page</a>.  
        A spider web hangs across the entrance, and occasionally a mouse scurries out of the page.
    </p>
</nav>
<div role="navigation">
    <ul>
        <li><a href="/">Home</a></li>
        <li><a href="/about">About</a></li>
        <li><a href="/services">Services</a></li>
        <li><a href="/contact">Contact</a></li>
    </ul>
</div>