HTML provides various tags to structure your content. Let's explore a few:
<header>
: Defines the header of your page.<nav>
: Contains navigation links.<main>
: Holds the main content.<footer>
: Defines the footer section.
<!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>© 2023 MyWebsite.com</p>
</footer>
</body>
</html>