HTML provides various tags to structure your content. Let's explore a few:


<!DOCTYPE html>
<html>
<head>
    <title>Structuring Content</title>
</head>
<body>
    <header>
        <h1>Welcome to My Website</h1>
    </header>
    <nav>
        <ul>
            <li><a href="#">Home</a></li>
            <li><a href="#">About</a></li>
            <li><a href="#">Contact</a></li>
        </ul>
    </nav>
    <main>
        <h2>About Me</h2>
        <p>I love creating websites!</p>
    </main>
    <footer>
        <p>&copy; 2023 MyWebsite.com</p>
    </footer>
</body>
</html>