Is HTML a programming language?
No, it is a markup language
What do HTML tags do?
Define and structure content
What is an HTML element?
A complete structure with opening tag, content, and closing tag
Give an example of a self-closing tag
<img></img>
What tag creates a line break?
<br></br>
What tag creates a horizontal line?
<hr></hr>
What does <strong> do?</strong>
Makes text important (bold)
What does <em> do?</em>
Emphasises text (italic)
What is the purpose of the <title> tag?</title>
Sets the browser tab name
What is a relative link?
A link to another page within the same website
What is an absolute link?
A full URL to another website
What does the <nav> tag represent?
Navigation links
What does the <footer> tag represent?
Bottom section of a page
What does the <main> tag contain?
The main content of the page
What is the purpose of the <label> tag in forms?</label>
Describes an input field
What attribute makes a form field required?
required
What tag is used to create a table row?
<tr>
</tr>
What tag is used for table headings?
<th>
</th>
What is the difference between id and class?
id is unique, class can be reused
What is index.html usually used for?
The homepage of a website