NEW
Font size
WorksheetsHTML and CSS
Total questions: 18
Worksheet time: 10mins
What is HTML?
HyperText Markup Language
HighTower Makeup Language
Plain Text on Documents
Expensive Types of Candy
What language is used to define the structure of a webpage?
HTML
CSS
JavaScript
French
What language is used to add style to a webpage?
HTML
CSS
JavaScript
French
Which is correct CSS syntax?
{body; colour = black;}
body: colour = black
body {
colour : black;}
{body colour is black}
What tag do you used to create a numbered list?
<list>
<ol>
<li>
<ul>
Which sets the colour of words in a paragraph
h1 {
colour: pink }
img {
colour: pink }
body {
colour: pink }
p {
colour: pink }
Select the rule to make all the text in your web page blue and centered.
p {
colour: blue; }
body {
text-align: left;
colour: blue; }
p {
text-align: center
colour: blue; }
body {
text-align: center
colour: blue; }
What symbols go around the properties for each CSS selector?
< >
[ ]
{ }
( )
What does CSS stand for?
Cascading style sheets
Certain Sumer stand
Color selctor stand
Cascading style selctor
p {color: red;}
<img>
add an image
make text italic
link to Internet<
You want to set the heading to use the font Arial.
h1 { font-family: arial; }
h1 { font: arial; }
heading 1 { font-family: arial; }
You want to set the width of a horizontal rule.
50px
50mm
50inches
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" />
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
