A
What does the "p" in <p> stand for?
Paragraph
In HTML, ________ is what we use to tell the computer what to do?
tags
src , alt, width, href, these are called what
attributes
What does HTML Stand for?
Hypertext Markup Language
<img href = "image1.png">
Spot the error
href needs to be replaced with src.
<img src>
I hold many items, like groceries in a bag. But inside me, only list items can tag. what am I?
<ul> or <ol>
6
which is bigger : h2 or h4
h2
The <a> tag is used for?
Creating hyperlinks
Which character is used to indicate an end tag?
/
I’m small but mighty, I hold just one thing at a time. Whether apples or pizza, my tag you must use.
<li>
Which tag do you use to create a numbered list?
<ol> tag
I’m not the biggest, but not the least. Use me for titles of sections, like “Appetizers” or “Feast.” Who am I?
<h2>
attributes go inside which tags?
opening tags
Name one HTML tag that does not need closing tags?
<img>
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">
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
(yes or no): error or no error?
<ol>
<li> pizza </li>
<li> fries </1i>
</ol>
yes, <1i>
What does "li" in the <li> tag, stand for?
List item
stores information inside of a tag
attributes
These two characters are used with attributes
= ""
equals sign AND quotation marks
Make an ordered list with 3 items: pizza, tacos, pasta.
<ul>
<li> pizza </li>
<li> tacos </li>
<li> pasta </li>
</ul>
What are the 3 sections of an HTML Document?
head, body, footer
Write an image tag with:
link: dog.jpg
description: happy dog
width: 400
Create a link that goes to www.google.com with the text:
Search on Google
<a href="www.google.com"> Search on Google </a>