What does the "p" in <p> stand for?
What is Paragraph
What tag is used to italicize words?
What is <i>?
What does HTML stand for?
What is Hyper Text Markup Language
The property name used to change the color of text
What is color
Selects all h1 elements
what is h1
Which HTML tag will create the largest heading?
What is <h1>
Which character is used to indicate an end tag?
What is /
The end of the HTML document
What is </html>
The color bright red in hexadecimal
What is #FF0000
selects the class "period6"
What is .period6
What should be the first line of your HTML files?
What is <!DOCTYPE html>
I use this html tag to make text bold?
What is <b>
How many different headings are there?
What is 6 headings
The color Green in hexadecimal
What is #00FF00
Selects the id "captaincrunch"
what is #captaincrunch
Almost all of our content the user sees goes in which element?
What is body
What is the smallest heading size?
What is <h6>
Creates a line break on the resulting page
What is the <br> tag
The color white in hexadecimal
What is #FFFFFF
Selects ALL elements that are a descendant of a ul
What is ul *
Name one HTML tags that do not need closing tags
What is <br>, <hr>, or <img>
This is the file extension of a web page created in HTML programming. Hint: index._______
What is .html / .htm?
What tag do we use to go to the next line in HTML
What is <br>
The number of different options for each brightness level ( How many options from 00-FF?)
What is 256
Selects all h1 elements with class spicy
What is h1.spicy?