What is Semantic HTML?
Semantic HTML means using HTML tags that describe the meaning and purpose of the content.
Instead of telling the browser:
<div>This is navigation</div>
You tell the browser:
<nav>
Navigation Links
</nav>
The second example clearly explains the purpose of the content.