HTML #1
HTML #2
HTML #3
HTML #4
CSS
100

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

Paragraph

100

Which opening and closing tags should have all of your content inside of it?

 <body>  </body>

100

The two main parts of a website are the content and the ___________

structure

100

Which symbol do you use to create a closing tag instead of an opening tag?

/

100

What property do you use to change the size of your text?

font-size

200

Which HTML tag will create the largest heading?

 <h1>

200

The combination of <p> content </p> is called _________.

An element

200

An unordered list looks like a list marked with _______

Bullet Points

200

Which tag creates a line break (like when you hit return on your keyboard to move the cursor down the page)

<br>


200

What is the selector for?

Selecting which tags get stylized
300

What color will the bugs in your code be?

Pink

300

I use this html tag to make a list item.

<li>

300

How many different headings are there? 

6 headings 

300

What happens when you use <u>

get Underline text 

300

What do we call the block of code in CSS that changes the style of different elements?

A rule set

400

What is is the very last tag of your website's code?

</html>

400

What is the smallest heading size?

<h6>

400

What is the difference between an unordered list and an ordered list?

Unordered - bullet points
Ordered - numbers

400

Which tags in your HTML code do you use to link your CSS stylesheet?

inside <head>tag

400

What three letters do you see when you are using numbers to change the color of text?

RGB

500

What should be the first line of your HTML files?

<!DOCTYPE HTML>

500

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

html

500

The pattern of tags for an unordered list in HTML is_______

<ul> <li> </li> </ul>

500

What does HTML stand for?

Hyper Text Markup Language

500

What are the punctuation marks in CSS that we need to make sure we use?

: and ;