What is the difference between elements, tags, and attributes?
< p >My first paragraph.< /p >
What is meant when we say that HTML is about structuring content (2 things)?
Briefly explain this tree structure.

Include key concepts such as nodes, root element, children elements, sibling elements.
How do you comment code in HTML?
What is its usage?
<!-- this is a comment -->
Programmers use comments to leave valuable info for future maintainers without it being rendered to users.
The practice of “commenting out” code is a common way of temporarily disabling code, often times for the purpose of debugging.
What is semantic HTML?
Name a few examples.
HTML is semantic when the elements we use to represent our content reinforce the meaning of that content.
When writing HTML, strive to use elements that communicate the meaning of the document’s structure.
Examples:
< header >
< nav >
< main >
< section >
< footer >
Specific example: “Having a header at the top that contains a logo, the name of the company and a menu.”
What is not semantic (opposite: not meaningful): Having main content in the header or information that should be in the footer in the header.
Who/what does semantic HTML help?
The names of the HTML elements we choose help browsers, web-crawlers, screen readers, and project collaborators to better understrand our content.
T/F: All elements have the capability of being semantic.
FALSE.
Most elements do. Elements like < div > and < span > do not because they are not specific at all.