What does HTML stand for?
HyperText Markup Language
True or False: HTML is a programming language.
False
What is the purpose of the <head> element in an HTML document?
To contain meta-information about the document, such as the title and links to stylesheets.
Fill in the blank: The main content of an HTML document is typically contained within the ______ element.
<body>
</body>
What is the correct HTML element for inserting a line break?
<br></br>
Which HTML element is used for creating hyperlinks?
<a></a>
What attribute is used with the <a> tag to specify the destination URL?</a>
href
True or False: The <div> element is a block-level element.
True
What is the function of the <meta></meta> tag?
To provide metadata about the HTML document, such as character set and viewport settings.
What does the <title> element define?</title>
The title of the HTML document, shown in the browser’s title bar or tab.
Which HTML element is used to define an unordered list?
<ul>
</ul>
What tag is used to create a table in HTML?
<table>
</table>
Fill in the blank: The ______ element is used to define a caption for a table.
<caption>
</caption>
True or False: The <span> element is an inline element.</span>
True
What is the purpose of the <form> element?
To collect user input.
Which attribute is commonly used with the <form> element to specify the method of sending data?
method
What does the <input></input> element do?
It creates various types of user input fields in a form.
What is the default type of the <input></input> element if the type attribute is not specified?
text
Which HTML element is used to define a footer for a document or section?
<footer>
</footer>
What is the purpose of the <header> element?
To define introductory content or navigational links.
What does the <section> element represent?
A thematic grouping of content, typically with a heading.
Fill in the blank: The ______ element is used to define a navigation section in an HTML document.
<nav>
</nav>
What is the purpose of the <article> element?
To represent a self-contained piece of content that could be distributed independently.
True or False: The <canvas> element is used for drawing graphics on the fly via scripting.</canvas>
True
element?