Category 1
Category 2
Category 3
Category 4
Category 5
100

HTML stands for...

Hyper Text Markup Language

100

Show me, on the board, what a tag looks like

< >

100
What year did the first iPhone come out

2007

100

Show me what a title element looks like

<title> My home page </title>

100

Show me how to start a paragraph

<p>

200

There are 3 required tags, what are they

<html>

<head>

<body>

200

Explain a Line break and show what it looks like

line 1 <br/> ine 2

200

Show on the board how to make text italic

<em>

200

True or false:

The picture for your webpage does NOT have to be in the same folder as the web page

FALSE

200
What are hex codes?

Hex codes are the name for colors in HTML

300

What is a comment?

It explains what your code does, who wrote it, or when it was written

300

Explain an attribute and show an example

Extra bits of info inside a tag

Example: src="name pic" />

300
Give AT LEAST 2 years that the Dodgers won the World Series

2020, 1988, 1981, 1965, 1963, 1959, 1955

300

What is Megan Thee Stallion's real name?

Megan Javon Ruth Pete

300

True or false:

When creating an email link, you need to include "mailto"

TRUE

400

Show how to write a comment.

<!-- insert comment here -->

400

What is the "formula" to put a picture on your page?

<img src="name of pic.extension" />

<img src="me.jpg" width="25%"/>

400

Show on the board how to change the background color of a web page

<body bgcolor="xxxxx">

400

Show the difference between linking YOUR pages together and linking a different website 

Your page: <a herf="page.2.html"> click here </a>

Diff. Page: <a herf="http://www.google.com"> click here </a>

400
Show the tag difference for an ordered (numbered) list and an un-ordered (bulleted) list

Ordered: <ol>

Unordered: <ul>