This is the total number of heading tags that exist.
What is "6"?

What's the term for the highlighted part of css?
What is a "selector"?
What is the website we use to code?
Popcode
What symbol do you need to include to show the computer that jQuery is being used?
What CSS property and value must be set to enable flexbox?
display:flex;
Everything that renders on the page goes between these tags.
What is the <body> tag?
In the code below what is the value?

What is "red"?
What are the three parts of the box model?
Padding, border, margin
In the example below, what are the selector(s)?

".wavesImg" and ".headerWaves"
What justify-content value would align all HTML elements to the right of the page?
Flex-end
This is the attribute associated with <img> tags.
What is "src" (or source)?
In the code below, what is missing?

What is a "semicolon"?
This computer programmer found an actual bug in her computer hence giving rise to the term "debugging".
Who is "Grace Hoper"?
In the example below what is the event?

Double click
What justify-content value would align all HTML elements to the left of the page?
flex-start
Write an <a> tag that links to Facebook with the link text "Go to Facebook".
<a href="https://facebook.com">Go to Facebook</a>
What is "a period"?
What three materials/resources should you reference before asking a teacher for help?
1. Reference table 2. Google 3. A friend
DAILY DOUBLE!!
What is the error in the code below?:

The event and the action are switched. FadeToggle is not an event and shouldn't be in the first line.
What justify-content value would align all HTML elements to the center?
center
What two steps do you need to follow to add a Google Font?
1. Add the link to the font to the head.
2. Use the property "font-family" in CSS to write the font.
.homepage{
width: 100px;
}
What are the names of all the volunteer teachers in this class?
WCHS #1: Paul, Paulina, Erik, Maxwell
WHSAT #2: Alec, Pat, Ben, Maxwell

Write the CSS that would add space between items in a div with the class of "header"
.header{
display:flex;
justify-content: space-between;
}