Write on the board the generic example of using a Class on the stylesheet
What is
.class{property: value;}
This is an example of a block element...
span em cite nav
What is Nav?
This is when the CSS is on a separate page.
What is external stylesheets.
This is a benefit of using CSS
What is quicker download times?
This is the part of the HTML document that includes the <link> tag that refers to an external style sheet
What is <head>?
Write on the board the correct way to change a single specific paragraph to the font Calibri (serif) on a stylesheet & HTML5
What is:
<p id="p1"> </p>
#p1{ font-family: "Calibri", serif;}
What is the width has to be set on block elements?
This is when style information is used to override external stylesheet information for a specific page.
What is internal stylesheet?
What is grid template?
What is auto
This is not a flex-direction property...
row-reverse row-inverted column row
What is row-inverted
You want to have more space around the content THIS is what you use to accomplish that.
What is padding?
Write the correct code for changing the table's border size style & color
table{border: 2px solid #C30ff0;}
This tag is used in conjunction with absolute positioning
What is DIV?
This is what you use when you want the content to follow the properties of the elements already on the webpage.
What is Inherit?
Spot the error for an id:
@top{
background-color:#f5bad2
border-radius:0%;
}
What is @ and ;?
On the board write the CSS code that will have 2 divs side by side with different background colors.

On the board write the proper way to utilize CSS using the base example using generalized terms.
What is:
selector{property: value;}
What is z-index?
This explains the relationship between selectors
What is a combinator
On the board write the code for 2 different single images that you want them to float right with padding as follows:
right 20px left 15px top 1px bottom 30px
#man1, #owl2{
float:right;
padding:1px 20px 30px 15px;
}
The output will be this:
What is a rectangle with blue fill and No border?
This will be the color of the text "HTML is a markup language"
What is blue?
This CSS property sets and element on the right or left side of the container
What is float
On the board draw the image that depicts the placement of the elements around the content to adjust spacing
