What does href stand for?
HyperText Reference
What are the two types of lists and their tags?
<ul> and <ol>
What is a table?
It is a way to display information in a grid
Why isn't this code working?
<h1> There is no way this code can be wrong<h1>
<h1> at the end should be </h1>
What is <p>?
Creates a paragraph
What tag is used to create a hyperlink?
<a>
What do we call the data that goes inside a list and what is its tag?
<li> List Item </li>
What is the tag to create a table?
<table>
Why isn't this code correct?
<head>
<h1> Welcome to my new website! </h1>
<p> I sure hope I did it right! Don't want my first website to not work lol </p>
<head>
The website content is written in between the <head> tag which is only for Metadata
What does <h3> do?
Creates a header that's smaller in size than <h1> and <h2>
What goes in between
<a href ="google.com">______</a>?
The displayed text or image that you are using as the clickable button for your hyperlinking
What do we call a list that's inside another list?
Nested List
How do I add a border to the table? Write the code out on the board.
<table border = "Enter a Number">
Why isn't this code making the image a hyperlink?
<a href="https://www.w3schools.com" img src="w3html.gif" alt="W3Schools.com" width="100" height="132"></a>
The image should be outside of the <a> tag
What do I use if I want to bold a word in a sentence?
<b> or <strong>
What would this code display 
<a href="google.com"> Click Me! </a> 
What will this code show? Write this list out on the board.
<ol>
<li> How are you today? </li>
<li> Do you like this game so far? </li>
</ol>
1. How are you today?
2. Do you like this game so far?
What are the tags that are used to make up a table?
<table>
<th>
<tr>
<td>
Why is this table displaying text but not the lines?
Name Food Color
Bob Grass. Green
Karel Kibble Blue
It does not have a border attribute.
What do I use if I want to add a break line in my text?
<br>
How would I add a hyperlink to an image?
Write the code out on the board!
<a href=random link> <img src = randomImage></a>
Write this list out in code
1.) Breakfast
- Yogurt
- Cereal
2.) Lunch
- Pizza
- Burgers
<ol>
<li> Breakfast </li>
<ul>
<li> Yogurt </li>
<li> Cereal </li>
</ul>
<li> Lunch </li>
<ul>
<li> Pizza</li>
<li> Burger </li>
</ul>
</ol>
Write this table out in code
The table has 3 rows and 3 columns
The header for each show will be Name, Food, and Color.
Then fill in the table accordingly.
Answer on board
What's are the 4 mistakes with this code?
<body>
<a href= "thisIsARealLinkISwearClickMeI'mSafe">lol<a/>
<h7> Good luck finding them!</h7>
<p><bold>Do you see them yet?</bold>
</body>
<a/>, <h7>, </p>, and <bold>