You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<header>: Defines the header section of a page or section
<nav>: Defines a navigation section
<main>: Defines the main content of a page or section
<section>: Defines a section of content within a document
<article>: Defines an independent piece of content within a document, such as a blog post or news article
<aside>: Defines content that is tangentially related to the main content, such as a sidebar or a callout box
<footer>: Defines the footer section of a page or section
< header >
<header>
<h1>Welcome to My Website</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
< main >
<main>
<h2>About Us</h2>
<p>We are a small company that specializes in creating beautiful and functional websites for our clients.</p>
<h3>Our Services</h3>
<ul>
<li>Web Design</li>
<li>Web Development</li>
<li>Search Engine Optimization</li>
</ul>
</main>
<article>
<h2>10 Tips for Creating a Great Website</h2>
<p>Creating a great website can be a daunting task, but with these 10 tips, you'll be on your way to success in no time!</p>
<ol>
<li>Define your goals and target audience</li>
<li>Make your site mobile-friendly</li>
<li>Make sure your site is accessible</li>
</ol>
</article>