0
0
HTMLmarkup~5 mins

What is HTML - Quick Revision & Key Takeaways

Choose your learning style9 modes available
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?
AAn image
BA paragraph
CA main heading
DA link
Which part of an HTML document contains the visible content?
A<code>&lt;head&gt;</code>
B<code>&lt;body&gt;</code>
C<code>&lt;title&gt;</code>
D<code>&lt;meta&gt;</code>
Which tag is used to create a hyperlink in HTML?
A<code>&lt;a&gt;</code>
B<code>&lt;img&gt;</code>
C<code>&lt;link&gt;</code>
D<code>&lt;div&gt;</code>
What is the correct way to start an HTML document?
A<code>&lt;title&gt;</code>
B<code>&lt;body&gt;</code>
C<code>&lt;head&gt;</code>
D<code>&lt;html&gt;</code>
Why should you use semantic HTML tags?
ATo improve accessibility and SEO
BTo make the page load faster
CTo add colors to the page
DTo create animations
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.