What does HTML stand for?
HyperText Markup Language
True or False: HTML is a programming language.
False
Fill in the blank: The basic structure of an HTML document includes <html>, <head>, and ______.
<body>
</body>
Which tag is used to create a hyperlink in HTML?
<a></a>
What attribute is used to specify the destination of a hyperlink?
href
Which HTML tag is used for inserting an image?
<img></img>
What does the <title> tag define in an HTML document?</title>
The title of the document that appears in the browser’s title bar or tab.
True or False: The <div> tag is a block-level element.
True
Which tag is used to create an unordered list?
<ul>
</ul>
What is the purpose of the <head> section in an HTML document?
To contain meta-information, links to stylesheets, and scripts.
Which HTML tag is used to define a table?
<table>
</table>
What is the purpose of the <form> tag in HTML?
To create an interactive form for user input.
Fill in the blank: The <input></input> tag can have different types such as text, password, and ______.
checkbox
Which tag is used to create a line break in HTML?
<br></br>
True or False: The <span> tag is an inline element.</span>
True
What is the purpose of the alt attribute in the <img></img> tag?
To provide alternative text for the image if it cannot be displayed.
Which HTML tag is used for a numbered list?
<ol>
</ol>
What does the <meta></meta> tag do?
Provides metadata about the HTML document, such as character set and description.
What is the function of the <link></link> tag in the <head> section?
To link external resources like stylesheets.
True or False: The <header> tag is used to define a footer in an HTML document.
False
What is the purpose of the <footer> tag?
To define a footer for a document or section.
Which attribute is used with the <a> tag to open the link in a new tab?</a>
target=’_blank’
Fill in the blank: The <strong> tag is used to indicate ______ text.</strong>
emphasized
What is the correct HTML element for inserting a line break?
<br></br>
tag?