Tags
Define
HTML Styling
Writing HTML
Miscellaneous
100
<p>

What is the paragraph tag?
100
HTML
What is Hypertext Markup Language?
100
<style>
What is the HTML tag for styling?
100
The first line of code for every HTML page.
What is <!DOCTYPE html>?
100
True or false: "h1" is a valid HTML tag.
What is false?
200
<h2>

What is the second-size heading?
200
CSS
What is Cascading Style Sheets?
200

<tr style="color:white;">

What is the code that sets a table row's font color to "white"?
200
The code that will show "HTML Jeopardy" in the browser tab.
What is <title>HTML Jeopardy</title>?
200

True or False:  As long as you cite your sources, you can put any image you find online on your website.

What is false?
300
<img>
What is the image tag?
300
HTML Tag
What is the tag that tells the browser that a document is an HTML document?
300

<p style="font-size:20px">

What code sets the font-size of a paragraph to 20px?
300

The HTML code that will link the image https://skyartmedia.com/wp/w3schools-300x300.png to the w3schools.com website.

300
Two HTML tags that do not need closing.
What are <img>, <br>, <hr> (any combination of two)?
400
<a>
What is the hyperlink tag?
400
HTML heading tags.

What tags range from 1 to 6 and define HTML headings?

400

True or False:


This code will set the background color of the <h1> tag to blue.

<h1 style="background-color:blue;">Hello</h1>

What is true?
400
A section of code that contains a paragraph and un unordered list. 
What is:

<body>

<p>blah, blah, blah</p>

<ul>

<li>blah1</li><li>blah2</li><li>blah3</li></ul>

?

400
Creates a line break on the resulting page.
What is the <br> tag?
500
<td>
What is the table cell tag?
    500
    HTML body tag.

    What tag contains all the webpage content such as: text, hyperlinks, images, tables, lists, etc.?

    500

    It allows developers to separate content from its presentation layer.

    Developers change the appearance of an entire website by editing one file.

    What are benefits of using CSS?
    500
    Write the code for a web page with 

    title: ISSN  heading: The Best Vocation at MP  text:  ISSN stands for Information, Support, Services, and Networking.


    What is:

    <!DOCTYPE html>

    <html>

         <head>

              <title>ISSN</title>

         </head>

         <body>

              <hX> The Best Vocation at MP</hX>

              <p>ISSN stands for Information, Support, Services, and Networking.</p>

         </body>

    </html>                                                                 ?

    500
    One element is numbered and the other is bulleted.
    What is the difference between ordered and unordered lists?
    M
    e
    n
    u