HTML Basics
Common Tags
Head & Meta Elements
Tables
Links & Lists
100

What does HTML stand for?

HyperText Markup Language

100

Which tag is used to create a paragraph?

<p>

100

Which tag defines the document’s title shown in the browser tab?

<title>

100

Which tag defines a table in HTML?

<table>

100

Which tag creates a hyperlink?

<a>

200

Which tag is used as the root element of an HTML document?  

<html>

200

Which tag is used for the largest heading in a document?
 

<h1>

200

Which tag is used to provide metadata, such as character encoding or keywords?

<meta>

200

Which tag defines a table row?

<tr>

200

Which attribute of the <a> tag specifies the hyperlink’s destination URL?

href

300

What is the required first line (doctype declaration) in an HTML5 document?

<!DOCTYPE html>

300

Which tag is used to create a line break (without adding extra spacing)?

<br>

300

Which tag links external resources like stylesheets or icons?

<link>  

300

Which tag defines a table header cell?

<th>

300

Which tag defines an unordered (bulleted) list?

<ul>

400

Which two main sections are commonly included inside the <html> tag?

<head> and <body>

400

Which tag is used to define emphasized text that is typically displayed in italics?

<em>

400

Which <meta> attribute specifies the character encoding

charset

400

Which tag defines a table data cell?

<td>

400

Which tag defines a list item within both ordered and unordered lists?

<li>


500

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.

500

Which HTML tag is used to create a horizontal rule or thematic break in a document?

<hr>

500

Which <meta> attribute is used to define the name of the metadata, such as "description"?

name

500

Which optional tag groups table header information separately from the body?

Which optional tag groups table header information separately from the body?

500

Which tag defines an ordered (numbered) list?

Which tag defines an ordered (numbered) list?