This is the total number of heading tags that exist.
What is "6"?
The aspect of the HTML that you are attempting to change in CSS is called this.
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 do property and value do I need to put in CSS to turn on flexbox?
display:flex{
Everything that renders on the page goes between these tags.
What is the <body> tag?
p{
color:red;
}
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 associate with <img> tags.
What is "src" (or source)?
h1{
background-color: blue
}
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 right of the page?
flex-start
Write the code that could correctly render an a link to Facebook with the 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;
}