What exactly is semantic HTML and how would I use it to describe the American flag?
Semantic HTML just means that the markup has meaning. If you were to mark up the american flag using HTML, the most basic way would be to include an image:
<img src="flag.png" alt="American Flag" />
