What does HTML stand for?
HyperText Markup Language
What is HTML used for?
Structuring web pages
What does <!DOCTYPE html> do?
Declares the document as HTML5
What is the root element of a webpage?
<html>
</html>
What is inside the <body> tag?
Visible page content
What is inside the <head> tag?
Metadata (title, links, scripts)
Which tag creates the largest heading?
<h1>
</h1>
Which tag is used for paragraphs?
<p>
</p>
What attribute specifies a link’s destination?
href
How do you create a hyperlink?
<a>Text</a>
How do you add an image?
<img></img>
What does the alt attribute do?
Describes the image
What tag creates an unordered list?
<ul>
</ul>
What tag creates a numbered list?
<ol>
</ol>
What is a block element?
Takes full width (e.g., <div>)
What tag represents a list item?
<li>
</li>
What is an inline element?
Takes only needed space (e.g., <span>)</span>
What is the purpose of semantic tags?
Give meaning to content
Name one semantic tag
<header> (also <nav>, <main>, etc.)
</main></nav></header>
How do you write a comment in HTML?
<!-- comment -->