What does the "p" in <p> stand for?
Paragraph
Which opening and closing tags should have all of your content inside of it?
<body> </body>
The two main parts of a website are the content and the ___________
structure
Which symbol do you use to create a closing tag instead of an opening tag?
/
What property do you use to change the size of your text?
font-size
Which HTML tag will create the largest heading?
<h1>
The combination of <p> content </p> is called _________.
An element
An unordered list looks like a list marked with _______
Bullet Points
Which tag creates a line break (like when you hit return on your keyboard to move the cursor down the page)
<br>
What is the selector for?
What color will the bugs in your code be?
Pink
I use this html tag to make a list item.
<li>
How many different headings are there?
6 headings
What happens when you use <u>
get Underline text
What do we call the block of code in CSS that changes the style of different elements?
A rule set
What is is the very last tag of your website's code?
</html>
What is the smallest heading size?
<h6>
What is the difference between an unordered list and an ordered list?
Unordered - bullet points
Ordered - numbers
Which tags in your HTML code do you use to link your CSS stylesheet?
inside <head>tag
What three letters do you see when you are using numbers to change the color of text?
RGB
What should be the first line of your HTML files?
<!DOCTYPE HTML>
This is the file extension of a web page created in HTML programming. Hint: index._______
html
The pattern of tags for an unordered list in HTML is_______
<ul> <li> </li> </ul>
What does HTML stand for?
Hyper Text Markup Language
What are the punctuation marks in CSS that we need to make sure we use?
: and ;