<h1>
What type of element is this?
Largest heading
Which CSS property changes the color of the text?
color
What does HTML stand for?
HyperText Markup Language
What tag creates a list item?
<li>
Fix the error:
<h2>Welcome<h2>
<h2>Welcome</h2>
<ol>
What does this tag start?
An ordered (numbered) list
Which property controls the size of text?
font-size
What is the content of a website?
The text and images on a webpage
Which tag contains the visible content of a webpage?
<body>
Fix the error:
<ul><li>Item 1<li>Item 2</ul>
<ul><li>Item 1</li><li>Item 2</li></ul>
<head>
What does this section contain?
Metadata / info about the webpage
Which property changes how text is aligned (left, center, right)?
text-align
What is a digital footprint?
The collected information about an individual across websites
What tag begins an unordered list?
<ul>
Fix the CSS:
color: blue (missing something)
color: blue; (needs a semicolon)
<html>
What does this tag represent?
The root of an HTML document (beginning of all HTML)
Which property adds space outside an element?
margin
What is website structure?
How content on a website is organized
What do heading tags <h1> through <h6> represent?
Levels of headings / titles (H1 is largest)
Fix the structure:
<body><head></head></body>
<head></head><body></body>
<img>
Why does this tag not need a closing tag?
It’s a self-closing/void element
Which property adds a shadow behind text?
text-shadow
What is copyright?
The legal right to reproduce, publish, or distribute creative content
What tag inserts an image on a webpage and what two attributes does it require?
<img> with src and alt
Fix the broken image tag:
<img source="dog.jpg" alternate="dog photo">
<img src="dog.jpg" alt="dog photo">