A semantic element clearly describes its meaning to both the browser and the developer.
Specifies the webpage header.
Navigation links for the user in a webpage.
Marks the main content of the webpage.
Specifies a particular section in the webpage.
Denotes an article.
Denotes content displayed in a sidebar of the webpage.
Specifies the webpage footer.
<header>This is header part</header>
<nav>This is nav part</nav>
<main>
<h4>This is main part</h4>
<section>This is section part
<article>This is first article</article>
<article>This is second article </article>
</section>
<aside>
This is aside part
</aside>
</main>
<footer>
This is footer section
</footer>