HTML FUNDAMENTALS
TEXT & TYPOGRAPHY
LINKS & IMAGES
STRUCTURE & DIVISION
FORMS & INPUTS
100

What is the root element that encloses all other HTML elements in a document.

What is the <html> tag?

100

The largest heading tag in HTML.

What is <h1>?

100

The tag used to create a hyperlink to another web page.

What is the <a> tag?

100

A generic container tag that is often used for styling with CSS. It has no semantic meaning.

What is the <div> tag?

100

The tag that creates an HTML form for user input.

What is the <form> tag?

200

This declaration defines the document type to be HTML5

What is <!DOCTYPE html>?

200

This tag is used to define a paragraph

What is <p>?

200

This attribute of the <a> tag specifies the URL of the link.

What is the href attribute?

200

Similar to <div>, but it is an inline container and also often used for styling specific portions of text.

What is the <span> tag?

200

The most common form element, used to collect various types of user data like text, passwords, and numbers.

What is the <input> tag?

300

The section of the HTML document that contains metadata about the HTML page, like the title and character set.

What is the <head> element?

300

To make text bold, you can use either this tag or the <strong> tag.

What is the <b> tag?

300

This attribute of the <a> tag is often used to open a link in a new browser tab or window.

What is the target="_blank" attribute?

300

This semantic tag represents a self-contained composition in a document, page, application, or site. 

What is the <article> tag?

300

This attribute of the <input> tag specifies the type of input field, such as "text", "password", or "email".

What is the type attribute?

400

he main content of the HTML document that is visible to the user resides within this element.

What is the <body> element?

400

This type of list displays items with numbers.

What is an ordered list (<ol>)?

400

The tag used to embed an image in an HTML document.

What is the <img> tag?

400

This semantic tag typically contains navigational links.

What is the <nav> tag?

400

A multi-line text input control.

What is the <textarea> tag?

500

This tag is used to define a line break.

What is the <br> tag?


500

Each item within an ordered or unordered list is defined by this tag.

What is the <li> tag?

500

This attribute of the <img> tag specifies the path to the image file.

What is the src attribute?

500

his semantic tag usually contains introductory content or a set of navigational links at the top of a section or page.

What is the <header> tag?

500

This form element provides a dropdown list of options.

What is the <select> tag?

M
e
n
u