NEW
Font size
S
M
L
XL
WorksheetsWeb Design X
Total questions: 48
Worksheet time: 26mins
Name
Class
Date
1.
What does HTML stand for?
a)
Hyper Text Modelling Language
b)
Heuristic Text Markup Language
c)
Hyper Text Markup Language
d)
Heuristic Text Modelling Language
2.
Which heading tag is the largest in size?
a)
<h1>
b)
<h2>
c)
<h3>
d)
<h4>
3.
What is the function of the <p> tag?
a)
Defines a paragraph.
b)
Makes the text purple.
c)
It pushes the text to the right.
d)
Prints the webpage.
4.
You should save HTML files with which file extension?
a)
.htm
b)
.index
c)
.webpage
d)
.html
5.
Which tag is used to make text bold?
a)
<a>
b)
<u>
c)
<b>
d)
<I>
6.
Which language is used to enhance a webpage, e.g. change background colour?
a)
HTML
b)
CSS
c)
JavaScript
d)
SQL
7.
Within which tags on the HTML page is the main content placed?
a)
<head>
b)
<style>
c)
<html>
d)
<body>
8.
Which tag is used to create a hyperlink?
a)
<a>
b)
<u>
c)
<b>
d)
<i>
9.
Which tag is used to add a picture to a web-page?
a)
<graphic>
b)
<img>
c)
<pic>
d)
<picture>
10.
What does WYSIWYG stand for?
a)
when you sing is what you get
b)
why your sight is wearing your glasses
c)
what you sign is where you go
d)
what you see is what you get
11.
Chrome, Safari, Firefox and Internet Explorer are all examples of?
a)
Browsers
b)
Interpreters
c)
Compilers
d)
Web Authoring Software
12.
Type your html code using ______________ then save file and open in browser to view the webpage.
a)
Word
b)
Excel
c)
PowerPoint
d)
Notepad
13.
What program is needed to view web pages?
a)
Browser
b)
Interpreter
c)
Compiler
d)
Web Authoring Software
14.
A collection of web pages.
a)
server
b)
website
c)
www
d)
web links
15.
What does www stand for?
a)
width website web
b)
web world while
c)
web weld with
d)
world wide web
16.
Which web image format supports both transparency AND animation?
a)
PNG
b)
JPG
c)
SWF
d)
GIF
17.
The main purpose of your properly designed webpage is to first consider what __________ you want to convey to the viewer.
a)
message
b)
layout
c)
copyright
18.
ALWAYS consider and determine your intended ____________
a)
audience
b)
website
c)
layout
d)
anchor
19.
You should also consider ________ and _______ of your intended audience when designing your webpage.
a)
age range; specialization
b)
age range; purpose
c)
purpose; specialization
d)
specialization; message
20.
Who will be able to see your web page if it is posted to the internet?
a)
Everyone
b)
Almost everyone
c)
1/3 of the world's population
d)
my mom
21.
What information should never go on your website?
a)
phone number, social security number, address
b)
phone number, address, driver's license number
c)
address, social security number, driver's license number
d)
address, student id number, selfies
22.
What is copyright?
a)
A form of protection of original works of authorship
b)
A form of protection of someone else's work that you borrowed
c)
A form of protection of original works made by my mom
d)
A form of protection of second hand creations
23.
WYSIWYG stands for
a)
What you see is what you get
b)
What you see is what you grab
c)
When you see is what you google
d)
Where you see is when you go
24.
If you want to have more than one property for a CSS selector, what character separates them?
a)
comma (,)
b)
semi-colon (;)
c)
colon (:)
d)
dash (-)
25.
What does CSS stand for?
a)
Creative Style Sheets
b)
Cascading Style Sheets
c)
Colorful Style Spread
d)
Computer Style Spread
26.
Where in the HTML document is the correct location to insert code to link to your external CSS?
a)
In the <head> section
b)
In the <body> section
c)
At the very end of the document
d)
At the very beginning of the document
27.
Which is correct CSS syntax?
a)
{ body; color=black;}
b)
body: color= black
c)
body {color:black;}
d)
(body color is black)
28.
Select the code below that uses CSS to configure a background color of #000000 for a web page.
a)
body { background-color: #000000; }
b)
body { bgcolor: #000000; }
c)
document { background-page: #000000; }
d)
None of these
29.
Which is the correct way to format a Font Family for a paragraph?
a)
p { font-face: Arial; }
b)
p { family-font: Arial; }
c)
p { font-family: Arial; }
d)
p { font: Arial; }
30.
What symbols go around the properties for each CSS selector?
a)
< >
b)
[ ]
c)
{ }
d)
( )
31.
Which CSS code is incorrect?
a)
a {color: blue;}
b)
p {font-size: 10px;}
c)
body {background-color="red";}
d)
img {width: 100%;}
32.
Which is the value in this CSS?
p {color: red;}
p {color: red;}
a)
p
b)
color
c)
red
33.
Which is the selector for a link?
a)
a { }
b)
link { }
c)
href { }
d)
a href { }
34.
Which CSS code centers text?
a)
p {align: center;}
b)
p {text-align: center;}
c)
p {align=center;}
d)
p {center;}
35.
How do I remove the underline from a link using CSS?
a)
a {underline: none;}
b)
a {text-decoration: none;}
c)
a {style: none;}
d)
link {underline: none;}
36.
The code for the comment tag in CSS is
a)
<!-- comment -->
b)
<!-- comment >
c)
/* comment /*
d)
/* comment */
37.
Which is the correct way to format a Font Family for a paragraph? (Hint: make sure you have more than one backup font!)
a)
p { font-face: Arial, Verdana, San-Serif; }
b)
p { font-family: Arial, Verdana, San-Serif; }
c)
p { family-font: Arial, Verdana, San-Serif; }
d)
p { font: Arial, Verdana, San-Serif; }
38.
Which CSS code is buggy?
a)
link {color: blue;}
b)
li {background-color: red;}
c)
p {font-size: 10px;}
d)
img {width: 100%;}
39.
Which is the selector in this CSS?
p {color: red;}
p {color: red;}
a)
p
b)
color
c)
red
40.
Which is the property in this CSS?
p {color: red;}
p {color: red;}
a)
p
b)
color
c)
red
41.
Which is the Value in the CSS?
p {color: red;}
p {color: red;}
a)
p
b)
color
c)
red
42.
A selector (ex: h1{ } ) can only have 1 property
a)
true
b)
false
43.
Which CSS code centers text?
a)
p {align: center;}
b)
p {align=center;}
c)
p {text-align: center;}
d)
p {center;}
44.
What unit of measurement does CSS use for size?
a)
px
b)
em
c)
%
d)
All work
45.
What property changes the border for an image/table?
a)
border:
b)
border-size:
c)
border-color:
46.
You should always define a backup font-family in CSS.
a)
True
b)
False
47.
If you want to have more than one declaration in a CSS rule, what character separates them?
a)
comma ,
b)
semi-colon ;
c)
colon :
48.
Which is the correct way to specify the color of a paragraph of text?
a)
p { color:#ff0000; }
b)
p { text-color:#ff0000; }
c)
p { font-color: #ff0000; }
Reset
