HTML Basics
Structure & Text
Links & Media
Lists & Tables
Forms & Input
100

This acronym stands for HyperText Markup Language.

What is HTML? 

100

This tag creates the largest heading.

What is <h1>?

100

This tag is used to create a hyperlink. Hint: it's one letter.

What is <a>?

100

This tag creates a bulleted list.

What is <ul>?

100

This tag is used to create a form.

What is <form>?

200

True or False: The World Wide Web Consortium (W3C) is the organization that sets web standards for HTML.

What is true? 

200

This tag defines a paragraph.

What is <p>

200

This attribute specifies the destination of a link.

What is href?

200

This tag creates a numbered list.

What is <ol>?

200

This input type creates a checkbox. Hint: ___="____"

What is type="checkbox"?

300

This declaration defines an HTML5 document type. Hint: <!____ ___>

What is <!DOCTYPE html>?

300

This tag inserts a line break without starting a new paragraph.

What is <br>?

300

This attribute opens a link in a new tab. Hint: ____="_ ____"

What is target="_blank"?

300

This tag defines a table row.

What is <tr>?

300

This input type creates a text field.

What is type="text"?

400

This element contains metadata and is not displayed on the page.

What is <head>?

400

This tag defines important (bold) text semantically.

What is <strong>?

400

This tag is used to display an image.

What is <img>?

400

This tag defines a table cell.

What is <td>?

400

This tag creates a dropdown menu. Hint: it's one word, not dropdown or menu. 

What is <select>?

500

This element defines the title shown in the browser tab.

What is <title>?

500

This tag defines emphasized (italic) text.

What is <em>?

500

This attribute provides alternative text for an image.

What is alt?

500

These three elements together form a basic HTML table structure.

What are <table>, <tr> and <td>?

500

This attribute makes a field required before submission.

What is required?