Identify the Tag
CSS Properties
Vocabulary
HTML Tags
Fix the Code
100

<h1>
What type of element is this?

Largest heading

100

Which CSS property changes the color of the text?

color

100

What does HTML stand for?

HyperText Markup Language

100

What tag creates a list item?

<li>

100

Fix the error:
<h2>Welcome<h2>

<h2>Welcome</h2>

200

<ol>
What does this tag start?

An ordered (numbered) list

200

Which property controls the size of text?

font-size

200

What is the content of a website?

The text and images on a webpage

200

Which tag contains the visible content of a webpage?

<body>

200

Fix the error:
<ul><li>Item 1<li>Item 2</ul>

<ul><li>Item 1</li><li>Item 2</li></ul>

300

<head>
What does this section contain?

Metadata / info about the webpage

300

Which property changes how text is aligned (left, center, right)?

text-align

300

What is a digital footprint?

The collected information about an individual across websites

300

What tag begins an unordered list?

<ul>

300

Fix the CSS:
color: blue (missing something)

color: blue; (needs a semicolon)

400

<html>
What does this tag represent?

The root of an HTML document (beginning of all HTML)

400

Which property adds space outside an element?

margin

400

What is website structure?

How content on a website is organized

400

What do heading tags <h1> through <h6> represent?

Levels of headings / titles (H1 is largest)

400

Fix the structure:
<body><head></head></body>

<head></head><body></body>

500

<img>
Why does this tag not need a closing tag?

It’s a self-closing/void element

500

Which property adds a shadow behind text?

text-shadow

500

What is copyright?

The legal right to reproduce, publish, or distribute creative content

500

What tag inserts an image on a webpage and what two attributes does it require?

<img> with src and alt

500

Fix the broken image tag:
<img source="dog.jpg" alternate="dog photo">

<img src="dog.jpg" alt="dog photo">