HTML:
A
HTML:
B
HTML:
C
HTML:
D
HTML:
E
100

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

Paragraph

100

In HTML, ________ is what we use to tell the computer what to do?

tags

100

src , alt, width, href, these are called what 

attributes

100

What does HTML Stand for?

Hypertext Markup Language

100

<img href = "image1.png"> 

Spot the error

href needs to be replaced with src. 

<img src>

200

I hold many items, like groceries in a bag. But inside me, only list items can tag. what am I?

<ul> or <ol>

200
Up to what number do heading tags go?

6

200

which is bigger : h2 or h4

h2

200

The <a> tag is used for?

Creating hyperlinks

200

Which character is used to indicate an end tag?

/

300

I’m small but mighty, I hold just one thing at a time. Whether apples or pizza, my tag you must use.

<li>

300

Which tag do you use to create a numbered list?

<ol> tag

300

I’m not the biggest, but not the least. Use me for titles of sections, like “Appetizers” or “Feast.” Who am I?

<h2>

300

attributes go inside which tags?

opening tags

300

Name one HTML tag that does not need closing tags?

<img> 

400

What is the correct code for inserting an image?

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

2. <img alt="MyImage">

3. <img src="image.gif">

<img src = "image.gif">

400

What is the correct HTML code for inserting a hyperlink?

1. <a href="https://www.google.com" alt="Google">

2. <a href="https://www.google.com">Google</a>

3. <a src="https://www.google.com">Google</a>



Number 2

400

(yes or no): error or no error?

<ol>

<li> pizza </li>

<li> fries </1i>

</ol>

yes, <1i>

400

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

List item

400

stores information inside of a tag

attributes

500

These two characters are used with attributes 

 = ""

equals sign AND quotation marks

500

Make an ordered list with 3 items: pizza, tacos, pasta.

<ul>

<li> pizza </li>

<li> tacos </li>

<li> pasta </li>

</ul>

500

What are the 3 sections of an HTML Document?

head, body, footer

500

Write an image tag with:

  • link: dog.jpg

  • description: happy dog

  • width:  400

500

Create a link that goes to www.google.com with the text:
Search on Google

<a href="www.google.com"> Search on Google </a>