WorksheetsHTML and CSS Review
Total questions: 17
Worksheet time: 9mins
The correct syntax to connect an external style sheet to a Web page
<style rel="stylesheet" type="text/css" href="file.css" />
<link rel="stylesheet" type="text/css" href="file.css" />
<attach rel="stylesheet" type="text/css" href="file.css" />
<a rel="stylesheet" type="text/css" href="file.css" />
Which rule set would change the font size to 24?
font-size: 24
size: 24;
font-size: 24;
font size: 24;
What will this rule set create?
h1 {
text-decoration: underline overline dotted red;
}
red waves under the heading
red dots over and under the heading
red waves over and under the heading
red dots over the heading
HTML stands for
Hypertext Max Language
Hypertext Media Language
Hypertext Markup Language
Hyper Technology Memory Language
CSS stands for...
Cascading Style Sheet
Computer Safe Search
Creative Software Sheet
Computer Styling Sourcecode
The part of a CSS rule-set that defines which HTML elements the style should be applied to is a...
Comment
CSS sheet
HTML tag
CSS Selector
Links to a CSS style sheet should be placed in which HTML section
body
footer
head
comment
CSS - HTML - JavaScript are known respectively as...
The content - the design - the interaction
The design - the content - the interaction
The interaction - the content - the design
The content - the interaction - the design
The tag that creates a numbered list is
<li>
<ol>
<ul>
<hr>
The <hr> tag will create...
a ruled line
a large space
a paragraph
an align-right
The <p> tag defines a......
Heading
Paragraph
List
Line break
The <h4> tag defines
A heading
A paragraph
A list
A line break
