HTML 1
HTML 2
HTML 3
Writing HTML
Other
100

What does the "p" in <p> stand for?

What is a paragraph?

100

Almost all of our content the user sees goes in which element?


What is body?

100

What is the correct HTML for inserting an image?

1. <img href="image.gif" alt="MyImage">

2. <image src="image.gif" alt="MyImage">

3. <img alt="MyImage">image.gif</img>

4. <img src="image.gif" alt="MyImage">

What is 4. <img src="image.gif" alt="MyImage">?

100

What does HTML stand for?

What is Hyper Text Markup Language?

100

What is the design side (style sheets) that goes along with HTML?

What is CSS?

200

Which HTML tag will create the largest heading?

What is <h1>?

200

What tag would you use to make a numbered list?

What is <ol>?

200

What tag would you use to make a header bold in a table?

What is <th>

200

The code that will show "HTML Jeopardy" in the browser tab.

What is <title>HTML Jeopardy</title>?

200

Name two HTML tags that do not need closing tags

What are <img>, <br>, <hr> (any combination of two)?

300

What should be the first line of your HTML files?

What is <!DOCTYPE html>?

300

The following is an image that is supposed to display cats but it does not work. What is wrong with the code?

<img src = "https://news.nationalgeographic.com/cats/" alt="Cat Image">



What is "The url is pointing to the web page, not the image address." error?

300

How many different headings are there? 

6 headings 

300

What tags do you need to link an image?

What is <a> and <img>?

300

Creates a line break on the resulting page

What is the <br> tag?

400

What is the correct HTML for creating a hyperlink?

1. <a>https://www.l-spioneers.org/</a>

2. <a name="https://www.l-spioneers.org/">L-S Pioneers</a>

3. <a href="https://www.l-spioneers.org/">L-S Pioneers</a>

4. <a url="https://www.l-spioneers.org/">L-S Pioneers</a>

What is 3. <a href="https://www.l-spioneers.org/">L-S Pioneers</a>?

400

Give an example of an HTML attribute.

What is src, alt, href, ...?

400

The title tag is kept inside the __________.

What is <head>?

400

What two tags do you use to create a bullet point list?

What is <ul> and <li>?

400

What should values such as urls and image addresses always around them?

What is Quotation marks?

500

What does src stand for?

What is source?

500

What is the purpose of having alternative text for an image?

What is It provides a backup in case your image doesn't download properly or for visually impaired users?

500

What does "li" in the <li> tag, stand for?

What is list item?

500

CSS stylesheet link needs to be inserted where on in the HTML page?

What is inside the <head> tags

500

This is the file extension of a web page created in HTML programming. Hint: index._______ 

What is .html / .htm?