WorksheetsGAME QUIZ
Total questions: 10
Worksheet time: 70secs
What does CSS stand for?
Cascading Style Sheets
Computer Style Sheets
Colorfull Style Sheets
Creative Style Sheets
What is the correct HTML for referring to an external style sheet?
<style src="mystyle.css">
<link rel="stylesheet" type="text/css" href="mystyle.css">
<stylesheet>mystyle.css</stylesheet>
Which HTML tag is used to define an internal style sheet?
<style>
<script>
<css>
Which HTML attribute is used to define inline styles?
styles
class
style
font
Which is the correct link syntax?
<a href=“page2.html”> CLICK HERE TO GO TO PAGE 2 a/>
<a href “page2.html”> CLICK HERE TO GO TO PAGE 2 <a/>
<a href=“page2.html”> CLICK HERE TO GO TO PAGE 1 <a/>
<a href=“page2.html”> CLICK HERE TO GO TO PAGE 2 <a/>
What is the missing character in this statement: <title LINK FOR FACEBOOK</title>
.
""
>
<
What is the missing character in this statement:
<a href "https://www.facebook.com"> FACEBOOK.COM <a>
<\
= /
; "
< >
Which property is used to change the background color?
background-color
color
bgcolor
Which CSS property is used to change the text color of an element?
color
fgcolor
text-color
What is the correct CSS syntax for making all the <p> elements bold?
p {font-weight:bold;}
p {text-size:bold;}
<p style="font-size:bold;">
<p style="text-size:bold;">
