What does HTML stand for?
HyperText Markup Language
Which tag is used to create a paragraph?
<p>
Which tag defines the document’s title shown in the browser tab?
<title>
Which tag defines a table in HTML?
<table>
Which tag creates a hyperlink?
<a>
Which tag is used as the root element of an HTML document?
<html>
Which tag is used for the largest heading in a document?
<h1>
Which tag is used to provide metadata, such as character encoding or keywords?
<meta>
Which tag defines a table row?
<tr>
Which attribute of the <a> tag specifies the hyperlink’s destination URL?
href
What is the required first line (doctype declaration) in an HTML5 document?
<!DOCTYPE html>
Which tag is used to create a line break (without adding extra spacing)?
<br>
Which tag links external resources like stylesheets or icons?
<link>
Which tag defines a table header cell?
<th>
Which tag defines an unordered (bulleted) list?
<ul>
Which two main sections are commonly included inside the <html> tag?
<head> and <body>
Which tag is used to define emphasized text that is typically displayed in italics?
<em>
Which <meta> attribute specifies the character encoding
charset
Which tag defines a table data cell?
<td>
Which tag defines a list item within both ordered and unordered lists?
<li>
What is the purpose of the <head> section of an HTML document?
To contain metadata, such as the document title, and meta tags that describe the document.
Which HTML tag is used to create a horizontal rule or thematic break in a document?
<hr>
Which <meta> attribute is used to define the name of the metadata, such as "description"?
name
Which optional tag groups table header information separately from the body?
Which optional tag groups table header information separately from the body?
Which tag defines an ordered (numbered) list?
Which tag defines an ordered (numbered) list?