Tags
HTML 101
HTML Potpurri
CSS
100

What does the "p" in <p> stand for?

What is a paragraph?

100

Almost all of our content the user sees goes in which element?


What is body?

100

This is the file extension of a web page created in HTML programming. Hint: index._______ 

What is .html?

100

What type of file is the stylesheet?

What is .css?

200

Which HTML tag will create the largest heading?

What is <h1>?

200

What tag would you use to make a numbered list?

What is <ol>?

200

What are the links that go across the top of the page that allow you to click between pages called?

What is a navigation bar?

200

What character is used in CSS to contain property value pairs for selectors?

What are curly braces? {}

300

What does "li" in the <li> tag, stand for?

What is list item?

300

What should be the first line of your HTML files?

What is <!DOCTYPE html>?

300

What two tags do you use to create a bullet point list?

What is <ul> and <li>?

300

The stylesheet is linked inside the __________ element.

What is <head>?

400

Which character (punctuation) is used to indicate a closing tag?

What is / ?

400

What does HTML stand for?

What is Hyper Text Markup Language?

400

Name an HTML element that does not need a closing tag

What is <img>

400

How many style rules can you write per selector?

What is unlimited?

500

What does src stand for?

What is source?

500

What is the purpose of having alternative text for an image?

What is It provides a backup in case your image doesn't download properly or for visually impaired users?

500

What the final two lines of every html document be?

What are: 

</body>

</html>

500

What punctuation mark separates property value pairs? (What does each line need to end in?)

What is a semi-colon? ;