NEW
Font size
WorksheetsSLO - FWPDD Test
Total questions: 15
Worksheet time: 75secs
True or False. Inline style will overide css styles.
True
False
What do you name your Cascading Style Sheet
style.css
css.file
css.html
html.csss
What does CSS stand for?
Computer Style Sheets
Cascading Style Sheets
Colorful Style Sheets
Creative Style Sheets
Where in an HTML document is the correct place to refer to an external style sheet?
At the end of the document
In the <head> section
In the <body> section
In the <footer>
Which HTML tag is used to define an internal style sheet?
<script>
<css>
<sheet>
<style>
What is the word OUTSIDE of the curly brackets called?
property
declaration
selector
value
Which is the correct CSS syntax?
{body;color:black;}
{body;color=black;}
body;color=black;
body {color:black;}
Cascading Style Sheets are used to _______.
activate Java on web pages
create hypertext languages
format the layout of web pages
create inline styles
What is the default value of the position property?
absolute
fixed
relative
static
Which property is used to change the left margin of an element?
margin-right
center
margin-left
justified
When using the padding property; are you allowed to use negative values?
No
Yes
Always
Sometimes
How do you insert a comment in a CSS file?
/* this is a comment */
// this is a comment //
' this is a comment
// this is a comment
Which property is used to change the background color?
bgcolor
color
background-color
background:color
Each declaration ends with a....
colon
semi-colon
slash
bracket
What is the correct HTML for referring to an external style sheet?
<link rel="stylesheet" type="text/css" href="mystyle.css">
<style src="mystyle.css">
<stylesheet>mystyle.css</stylesheet>
All are correct
