NEW
Font size
WorksheetsCSS Quiz
Total questions: 10
Worksheet time: 5mins
What does CSS stand for?
Confusing Site Styler
Cascading Style Sheets
Computer Suited Syntax
Competitive Selector Syntax
What is the best way to use CSS?
Inline Style
Internal Style Sheet
Inspect Chrome Element
External Style Sheet
Styling using an external style sheet would override inline styling
True
False
Where do we link an external style sheet in the HTML document?
In the body
In the images folder
In the Head
In the footer
Choose the correct syntax
{H2-color:red};
H2(color:red;)
let H2=color-red;
H2{color:red;}
What PROPERTY could we use to style the background?
background-color
color
bgcolor
backgroundColor
How would you change the font size on all H1 ELEMENTS?
h1=text-size:14px
h1{font-size:14px;}
h1=(font-size:14px)
h1{text-size:14px;}
What type of selector is this? .container
Class
Element
Id
Group
How would you select an ELEMENT with the ID name red-text?
#red-text
=red-text
.red-text
red-text
How do you use comments in a CSS file?
//this is a css comment//
*//this is a css comment
/* this is a css comment*/
//*this is a css comment*//
