<p>
What is the html tag for starting a new paragraph?
Find the one error in this line of code.
<p> Are you going to the book fair? It is next week. <p>
What is that that last <p> should be a </p>?
The html tag for a numbered list
What is <ol>?
The size of heading that you would use for the main topic.
What is <h1>?
The item that this type of code will put into your webpage.
<img src="treefrogs.jpg " alt="frogs" />
What is an image file or a picture?
<!DOCTYPE html>
What is the code that tells the computer this is an html document?
Find the one error in this piece of code. <h2> Top 2 favorite flowers in the US </h2>
<li> <ol> Roses </li>
<li> Daisies </li> </ol>
What is that the <ol> should come BEFORE the first <li>?
<ul>
What is the html tag for a bulleted list?
The html tag that you would use for the smallest heading size.
What is <h6>?
The full name for the alt part of the html tag below:
<img src="treefrogs.jpg " alt="frogs" />
What is alternate text?
<body>
What is the tag that tells you where to start the content of your webpage?
Find the ONE error in the code below:
<image src="spider.jpg" alt="spider" />
What is image should be img?
Must be put before and after each LIST ITEM in a list.
What are <li> and </li>?
The html tag for the next to smallest size heading.
What is <h5>?
The reason that alternate text is important when inserting image files into your web page.
What is so that you can figure out what the picture is supposed to be?
</ anything>
What is the tag that tells the computer to stop a previous instruction?
Find the one error in the code below:
<a link="horses.html"> Horses </a>
What is the word link should be replaced with href?
The reason that this code is not working properly:
<ul> <li> Corn Dogs <li>
<li> Chicken Nuggets </li>
<li> Pizza </li> </ul>
What is that the <li> after Corn Dogs should be </li>?
<h2>
What is the html tag for the second largest size heading?
This is what it is called when you give credit to the source of pictures that you found on another website.
What is attribution?
<!-- -->
What is the html tag for a comment that only you can see?
Find the one error in the code below:
<img src="fluffybunny.JGB" alt="Fluffy Bunny" />
What is the picture file should be a JPG and not a JBG?
Find the error in the code below:
<ol> <li> Fish </li>
<li> Frog </li>
<li> Snake </li>
What is there is no </ol> at the end?
The item in the list below that is NOT related to headings.
<heading>
<head>
<h4>
What is <head>?
Fixing the errors in your html tag.
What is debugging?