NEW
Font size
WorksheetsFinal Exam Review 2018
Total questions: 20
Worksheet time: 10mins
Which of these items is a CSS selector
.container
width
100%
:hover
Which of these is a CSS property?
.container
width
100%
:hover
Which of these is a CSS value?
.container
width
100%
:hover
Which tag allows an HTML page and a CSS page to reference each other?
< link >
< a >
< href >
< rel >
When using the link tag, what value does the relationship attribute hold?
style
stylesheet
css
relationship
When using the link tag, what value does the type attribute hold?
text/css
css/text
plain/text
plain/css
Which of these is a property value in CSS?
font-family
background-image
color
Helvetica
What does the < h1 > tag create?
a heading
a link
a paragraph
an image
What does the < img > tag create?
a heading
a link
a paragraph
an image
what does the < p > tag create?
a heading
a link
a paragraph
an image
What does the < a > tag create
a heading
a paragraph
a link
an image
Which of these allows you to select only one option in a form?
radio button
check box
text area
text box
Which of these will allow you to select multiple options in a form?
radio button
check box
text area
text box
Which tag creates a row in a table?
< td >
< tr >
< table >
< tbody >
Which tag creates a column in a table?
< tr >
< td >
< table >
< tbody >
The # symbol designates that _________ is being created.
a class
an id
a table
an image
The . symbol designates that __________ is being created.
a class
an id
a table
an image
< div id="new" > would look like what in CSS?
.new
#new
new
new-css
< div class="container" >
.container
#container
container
:container
The < link > tag allows an HTML and CSS page to reference each other.
True
False
