wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Web Design Final Review SP21

Total questions: 23

Worksheet time: 14mins

Name
Class
Date
1.

What are the required elements of an HTML page?

a)

doctype, html, head, body

b)

doctype, html, title, body

c)

doctype, html

d)

html, title, paragraph

2.

Where would you put the information that tells the webpage how to act/the metadata?

a)

<title>

b)

<head>

c)

<body>

d)

<!doctype HTML>

3.

Where would you put all the stuff that shows up on the webpage?

a)

<html>

b)

<head>

c)

<p>

d)

<body>

4.
Which tag is used to create a hyperlink?
a)
<a>
b)
<u>
c)
<b>
d)
<i>
5.
Which tag is used to add a picture to a web-page?
a)
<graphic>
b)
<img>
c)
<pic>
d)
<picture>
6.
Which heading tag is the largest in size?
a)
<h1>
b)
<h2>
c)
<h3>
d)
<h4>
7.

What is <p> used to create?

a)

Plastic

b)

Paragraph

c)

Picture

d)

Page

8.

Does the <html> element need a closing tag?

a)

Yes

b)

No

9.

Which link will get you from "firstpage.html" to "secondpage.html" if both are in the same folder?

a)

<link href="secondpage.html">Second Page</link>

b)

<a href="../secondpage.html">Second Page</a>

c)

<a>Second Page</a>

d)

<a href="secondpage.html">Second Page</a>

10.

Which link will get you from "firstpage.html" to "secondpage.html" if the second page is in the folder above the first page?

a)

<link href="secondpage.html">Second Page</link>

b)

<a href="../secondpage.html">Second Page</a>

c)

<a>Second Page</a>

d)

<a href="secondpage.html">Second Page</a>

11.

Which link will get you from "firstpage.html" to "secondpage.html" if the second page is in the folder below the first page?

a)

<link href="folder/secondpage.html">Second Page</link>

b)

<a href="../secondpage.html">Second Page</a>

c)

<a href="folder/secondpage.html">Second Page</a>

d)

<a href="secondpage.html">Second Page</a>

12.

Which CSS code would style this line of HTML?

<p>I want to be blue!</p>

a)

.blue { color: blue; }

b)

p { color: blue; }

c)

<p> color: blue </p>

d)

<style> p color blue </style>

13.

Which CSS code would style this line of HTML?

<p class="blue">I want to be blue!</p>

a)

.blue { color: blue; }

b)

p { color: blue; }

c)

blue { color: blue }

d)

<style> blue color blue</style>

14.

What is internal CSS?

a)

Any CSS

b)

CSS written inside a style attribute in an HTML tag (<p style="font-family: Comic Sans">)

c)

CSS written in a .css file

d)

CSS written inside a <style> tag in <head> of an HTML file

15.

What is external CSS?

a)

Any CSS

b)

CSS written inside a style attribute in an HTML tag (<p style="font-family: Comic Sans">)

c)

CSS written in a .css file

d)

CSS written inside a <style> tag in <head> of an HTML file

16.

How do you link a .css file to a .html webpage?

a)

With a <link> in the <head>

b)

With a <a> in the <head>

c)

With a <link> in the <body>

d)

With a <a> in the <body>

17.

Select all the ways a website can be accessible:

a)

High contrast colors

b)

No alternative text for images

c)

Logical layout: h1 then h2 then h3, etc

d)

Easy-to read font-

18.

Select all the things that should go near the top of a webpage:

a)

Navigation links

b)

Logo for business

c)

Contact information

d)

Main content on website

19.

If you use color to draw attention to something, you are using the ___________ element of design.

a)

Unity

b)

Hierachy

c)

Scale

d)

Emphasis

20.

If you make sure the content on your webpage looks symmetrical, you are using the ___________ element of design.

a)

Similarity

b)

Hierachy

c)

Balance

d)

Emphasis

21.

If you use someone else's photo on a commercial website, what must you do?

a)

Use it and link back to the place you got it

b)

Ask creator for permission and then cite them on your webpage

c)

Cite the copyright information on your webpage

d)

Get permission from the creator and use it

22.

How does Ms. Johnson want you to informally cite photographs on your webpage?

a)

“Title of Image” by author, date. From source

b)

Put the link to the source

c)

Creator, A. (Year created). Title of Image, or a description. [Image format]. Retrieved from source

d)

You want us to cite? Pshaw

23.

You made it to the end! Tell me something:

4 lines