HTML Tags & Semantics
HTML is not just about putting text on a screen; it is about giving that text meaning. This is what we call Semantic HTML.
Headings
Headings range from <h1> to <h6>. The h1 is the most important tag on the page. You should usually have only one h1 per page, describing the main topic.
Paragraphs & Text Formatting
The <p> tag is the standard unit of text. Inside it, we can use <strong> for bold text that implies importance, and <em> for italic text that implies emphasis or a change in tone.
Empty Tags
Some tags, like <br> (break) and <hr> (horizontal rule), do not have a closing tag because they do not contain content. They are stand-alone elements.
View Full Transcript+
This section contains the full detailed transcript of the video lessons for accessibility purposes and quick review. It covers the hierarchy of H1-H6, the concept of block vs inline elements (conceptually), and the specific usage of void elements like br and hr.
