Text Formating
Linking
List
Tables
DEBUGGING
100
What is <h1>? 
Creates the largest header 
100

What does href stand for? 

HyperText Reference 

100

What are the two types of lists and their tags? 

<ul> and <ol>

100

What is a table? 

It is a way to display information in a grid

100

Why isn't this code working? 

<h1> There is no way this code can be wrong<h1> 

<h1> at the end should be </h1>


200

What is <p>?

Creates a paragraph

200

What tag is used to create a hyperlink? 

<a>

200

What do we call the data that goes inside a list and what is its tag?

<li> List Item </li>

200

What is the tag to create a table? 

<table> 

200

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 

300

What does <h3> do? 

Creates a header that's smaller in size than <h1> and <h2> 

300

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

300

What do we call a list that's inside another list? 

Nested List


300

How do I add a border to the table? Write the code out on the board. 

<table border = "Enter a Number"> 

300

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

400

What do I use if I want to bold a word in a sentence? 

<b> or <strong> 

400

What would this code display
<a href="google.com"> Click Me! </a> 

Click Me! will become a hyperlink that will send you to Google.com 
400

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? 

400

What are the tags that are used to make up a table? 

<table> 

<th> 

<tr> 

<td> 

400

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. 

500

What do I use if I want to add a break line in my text? 

<br> 

500

How would I add a hyperlink to an image? 

Write the code out on the board!

<a href=random link> <img src = randomImage></a> 

500

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> 

500

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

500

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>