Recall & Review
beginner
What does HTML stand for?
HTML stands for HyperText Markup Language. It is the language used to create and structure content on the web.
Click to reveal answer
beginner
What is the main purpose of HTML?
HTML is used to build the structure of web pages by defining elements like headings, paragraphs, links, images, and more.
Click to reveal answer
beginner
What is a tag in HTML?
A tag is a code element in HTML that tells the browser how to display content. Tags usually come in pairs, like
<p> and </p> for paragraphs.Click to reveal answer
intermediate
What is the role of the
<head> section in an HTML document?The
<head> section contains information about the page like its title, links to stylesheets, and metadata. It does not show content directly on the page.Click to reveal answer
intermediate
Why is HTML important for web accessibility?
HTML uses semantic tags that help screen readers and other assistive tools understand the page structure, making websites usable for people with disabilities.
Click to reveal answer
What does the
<h1> tag represent in HTML?✗ Incorrect
The
<h1> tag is used for the main heading of a page or section.Which part of an HTML document contains the visible content?
✗ Incorrect
The
<body> section contains all the content that shows up on the web page.Which tag is used to create a hyperlink in HTML?
✗ Incorrect
The
<a> tag creates clickable links to other pages or resources.What is the correct way to start an HTML document?
✗ Incorrect
The
<html> tag wraps the entire HTML document.Why should you use semantic HTML tags?
✗ Incorrect
Semantic tags help browsers and assistive tools understand the page better, improving accessibility and search engine ranking.
Explain what HTML is and why it is important for creating web pages.
Think about how web pages are built and what language is used.
You got /3 concepts.
Describe the difference between the
<head> and <body> sections in an HTML document.One is for page info, the other is for visible content.
You got /3 concepts.