4 5865955741763898006
4 5865955741763898006
4 5865955741763898006
Level 2
Question 1:
What does CSS stand for?
Cascading Style Sheets Your answer
Colorful Style Sheets
Computer Style Sheets
Creative Style Sheets
Question 2:
What is the correct HTML for referring to an external style sheet?
<link rel="stylesheet" type="text/css" href="mystyle.css"> Your answer
<style src="mystyle.css">
<stylesheet>mystyle.css</stylesheet>
Question 3:
Where in an HTML document is the correct place to refer to an external style sheet?
In the <head> section Your answer
In the <body> section
At the end of the document
Question 4:
Which HTML tag is used to define an internal style sheet?
<style> Your answer
<script>
<css>
Question 5:
Which HTML attribute is used to define inline styles?
style Your answer
class
styles
font
Question 6:
Which is the correct CSS syntax?
body {color: black;} Your answer
{body;color:black;}
body:color=black;
{body:color=black;}
Question 7:
How do you insert a comment in a CSS file?
/* this is a comment */ Your answer
' this is a comment
// this is a comment
// this is a comment //
Question 8:
Which property is used to change the background color?
background-color Your answer
bgcolor
color
Question 9:
How do you add a background color for all <h1> elements?
h1 {background-color:#FFFFFF;} Your answer
h1.all {background-color:#FFFFFF;}
all.h1 {background-color:#FFFFFF;}
Question 10:
Which CSS property is used to change the text color of an element?
color Your answer
text-color
fgcolor
Question 11:
Which CSS property controls the text size?
font-size Your answer
text-size
text-style
font-style
Question 12:
What is the correct CSS syntax for making all the <p> elements bold?
p {font-weight:bold;} Your answer
<p style="font-size:bold;">
<p style="text-size:bold;">
p {text-size:bold;}
Question 13:
How do you display hyperlinks without an underline?
a {text-decoration:none;} Your answer
a {text-decoration:no-underline;}
a {underline:none;}
a {decoration:no-underline;}
Question 14:
How do you make each word in a text start with a capital letter?
text-transform:capitalize Your answer
You can't do that with CSS
text-style:capitalize
transform:capitalize
Question 15:
Which property is used to change the font of an element?
font-family Your answer
font-weight
font-style
Question 16:
How do you make the text bold?
font-weight:bold; Your answer
font:bold;
style:bold;
Question 17:
How do you display a border like this:
The top border = 10 pixels
The bottom border = 5 pixels
The left border = 20 pixels
The right border = 1pixel?
Question 18:
Which property is used to change the left margin of an element?
margin-left Your answer
padding-left
indent
Question 19:
When using the padding property; are you allowed to use negative values?
No Your answer
Yes
Question 20:
How do you make a list that lists its items with squares?
list-style-type: square; Your answer
list-type: square;
list: square;
Question 21:
How do you select an element with id 'demo'?
#demo Your answer
*demo
.demo
demo
Question 22:
How do you select elements with class name 'test'?
*test
#test
test
.test Correct answer
Question 23:
How do you select all p elements inside a div element?
div p Your answer
div + p
div.p
Question 24:
How do you group selectors?
Separate each selector with a comma Your answer
Separate each selector with a plus sign
Separate each selector with a space
Question 25:
What is the default value of the position property?
static Your answer
absolute
relative
fixed