Font size
WorksheetsIntro to CSS
Total questions: 10
Worksheet time: 5mins
Websites are made using which coding languages? (You can select multiple answers)
HTML
CSS
Javascript
Python
What language is responsible for the basic structure and format of the website?
HTML
CSS
Javascript
Python
Which language is responsible for the "style" of the website? (This includes colors, fonts, and positioning)
HTML
CSS
Javascript
Python
What symbol do we use for our declarations in CSS?
( )
Parenthesis
" "
Quotation Marks
{ }
Brackets
< >
Chevrons
True or False.
CSS can control the layout of multiple web pages all at once.
True
False
True or False.
CSS is an external file that needs to be linked to from the HTML document.
True
False
True or False. Each CSS selector can only have one declaration.
True
False
Which of the following statements about CSS is FALSE?
The selector points to the HTML element you want to style.
The declaration block contains one or more declarations separated by semicolons.
Each declaration includes a CSS property name and a value, separated by a colon.
CSS can only affect one HTML tag at a time.
Fill in the blank. Multiple CSS declarations are separated with _ .
,
Commas
;
Semicolons
< >
Chevrons
" "
Quotation Marks
Which option is the proper way to write CSS?
h1 (color="blue";)
h1 {color:blue;}
h1 <color=blue>
h1 = {blue;}
