wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Fundamentals of Web Review

Total questions: 70

Worksheet time: 2hrs 45mins

Name
Class
Date
1.
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 (-)
2.
What does CSS stand for? 
a)
Creative Style Sheets
b)
Cascading Style Sheets
c)
Colorful Style Spread
d)
Computer Style Spread
3.
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
4.
Which is correct CSS syntax? 
a)
{ body; color=black;}
b)
body: color= black
c)
body {color:black;}
d)
(body color is black) 
5.
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
6.
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; }
7.
What symbols go around the properties for each CSS selector?
a)
< >
b)
[ ]
c)
{ }
d)
( )
8.
Which is the selector for a link?
a)
a { }
b)
link { }
c)
href { }
d)
a href { }
9.
Which is the selector in this CSS?
p {color: red;}
a)
p
b)
color
c)
red
10.
Which is the property in this CSS?
p {color: red;}
a)
p
b)
color
c)
red
11.
Which is the Value in the CSS?
p {color: red;}
a)
p
b)
color
c)
red
12.
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.
13.
What is the difference between HTML and CSS?
a)
CSS is one type of HTML
b)
HTML gives a webpage structure. CSS provides styling.
c)
CSS structures a webpage. HTML strictly provides styling.
d)
There is no difference.
14.
How can you make a numbered list?
a)
<list>
b)
<ol>
c)
<dl>
d)
<ul>
15.
How can you make a bulleted list?
a)
<ol>
b)
<ul>
c)
<list>
d)
<dl>
16.
You should save HTML files with which file extension?
a)
.htm
b)
.index
c)
.webpage
d)
.html
17.
What is the function of a title tag?
a)
stores webpage title for browser and search engine results
b)
show server how to index the website
c)
shows meta information about the title
d)
shows server how to title the website
18.
What is the purpose of <!DOCTYPE html>?
a)
provides the web browser with security information
b)
instructs the browser where to look for your CSS files
c)
Allows programmers to link to files in-line
d)
Tells the web browser what language to expect
19.
Jerry wants to insert a line break into his webpage. Which code should he use?
a)
<ul>
b)
<li>
c)
<br>
d)
<h1>
20.
Which tag defines the visible content of a web document?
a)
<head>
b)
<meta>
c)
<title>
d)
<body>
21.
Which character is used to indicate an end tag in HTML?
a)
{}
b)
<
c)
/
d)
*
22.
What is the difference between an HTML Tag and an HTML element?
a)
An HTML Tag is case sensitive and an HTML element is not case sensitive.
b)
An HTML Tag is always paired and an HTML element is an "empty" tag.
c)
An HTML Tag defines content and an HTML Element includes the opening and closing tags and everything in between.
d)
An HTML Tag defines content and an HTML Element gives additional meaning and content.
23.
What is the proper code to insert an image named "frog.jpg"?
a)
<img src="frog" width="104" height="142">
b)
<img="frog.jpg" width="104" height="142">
c)
<img src="frog.jpg" width="104" height="142">
d)
<img ="frog" width="104" height"142">
24.
Annie wants the name of her product to be the main heading at the top of her webpage. Which tag defines
the main heading in a web document?
a)
<h3>Product</h3>
b)
<h5>Product</h5>
c)
<h1>Product</h1>
d)
<h6>Product</h6>
25.
What tag defines the beginning of a webpage?
a)
<html>
b)
<h1>
c)
<p>
d)
<body>
26.
A properly coded HTML tag will always be found between which two symbols?
a)
( )
b)
{ }
c)
[ ]
d)
< >
27.

HTML stands for

a)

Hyper Text Marker Language

b)

Hyper Text Marker Lingo

c)

Hyper Text Markup Language

d)

Hyper Text Markup Lingo

28.

Which one is the correct syntax for CSS?

a)

property {selector : value}

b)

value {property : selector}

c)

selector {value : property}

d)

selector { property : value}

29.
Which of the following is NOT a function of the <title> </title> element?
a)
Defines a title in the browser tab.
b)
Provides a title for the page when added to favorites/bookmarks
c)
Creates the first heading on the index page of the website
d)
Displays a title for the page in search engine results
30.
http://www.google.com is an example of a what?
a)
URL
b)
IP address
c)
Browser
d)
Application
31.

Which of the following would you use an IFrame for?

a)

Embedding a map from Google Maps in your website

b)

Adding an image to your website

c)

Changing an image’s opacity when the user hovers over the image

d)

Adding a filter to an image on your website

32.

Which heading tag will give you the smallest text size?

a)

<h1> </h1>

b)

<h3> </h3>

c)

<h6> </h6>

d)

<h10> </h10>

33.

Select all of the closing tags

a)

<p>

b)

</h1>

c)

</li>

d)

</ul>

e)

<ol>

34.

Which is the proper way to write an h1 tag

a)

<h1>Hello</h1>

b)

<h1>"Hello

c)

{h1}Hello{/h1}

d)

<h1>Hello<h1>

35.

Which type of brackets are used with CSS?

a)

< >

b)

[ ]

c)

\ /

d)

{ }

36.

In CSS, which selector would you use to style ALL table data elements?

a)

td

b)

.th

c)

tr

d)

#td

37.

Which CSS property changes text color?

a)

text-color

b)

textcolor

c)

color

d)

background-color

38.

In CSS, which selector would you use to select an image with an id of "footer"?

a)

img

b)

footer.img

c)

#footer

d)

.footer

39.

What is Responsive Web Design?

a)

Using CSS on different parts of a web page

b)

Making HTML elements appear in a grid

c)

Controlling the font size of text on a page

d)

Making web pages look good on all devices

40.

What is SEO?

a)

Search Engine Organization

b)

Search Engine Optimization

c)

Search Expert Optimizer

d)

So Easy Office

41.

Which is the most used search engine on the internet?

a)

Bing

b)

Baidu

c)

Google

d)

Yahoo

42.

SEO is all about enabling your ________to be found.

a)

iphone

b)

website

c)

keywords

d)

location

43.

What does SERP mean?

a)

Stop eating rice pudding

b)

search engine results page

c)

search engine resource page

d)

search engine resource program

44.

What is the formula Google and other search engines use to determine what pages/sites to suggest for a given search?

a)

SERP

b)

Algorithm

c)

Math, what math?

d)

Data Rich Referral Formula

45.

What is the objective of SEO?

a)

To have a nice website

b)

To have the best technology in terms of site encoding

c)

Increasing visibility of a website

d)

Increasing brand awareness

46.

What is Google using to crawl a website?

a)

Bugs

b)

Spiders

c)

Pigeons

d)

Softwares

47.

What is the first thing to do before doing SEO?

a)

Create a website

b)

Get an html training

c)

Define your headings

d)

Define a marketing strategy

48.

In Google, what is the system that orders the results?

a)

Index

b)

Cookies

c)

Spider program

d)

Page rank

49.
Another name for web address is _________.
a)
Website
b)
Webpage
c)
URL
d)
Web Browser
50.
True or False:
Plagiarism is not against the law.
a)
True
b)
False
51.

What accessibility feature might be used to help partially sighted people view a website?

a)

Screen reader

b)

Videos

c)

Lots of text

d)

Small fonts

52.

____________ focuses on how a disabled person accesses or benefits from a site, system or application

a)

Accessibility

b)

Usability

c)

Layout

d)

Adaptability

53.

Closed Captions (CC) - otherwise known as subtitles - in a YouTube video will help people with which disability?

a)

Colour blind

b)

Partial sight

c)

Hearing difficulty

54.
URL stands for what?
a)
Universal Renaming License
b)
Uniform Resource Locator
c)
University Reconnect Locater
d)
Uniform Reversal Landscape
55.
The Internet is a worldwide network of computers connected together to share information
a)
True
b)
False
56.
Internet Explorer, FireFox, Google Chrome, and Safari are examples of what?
a)
URLs
b)
Address Bar
c)
Web Browsers
d)
Internet
57.
The starting point or front page (index page) of a site.
a)
Starting Page
b)
Home Page
c)
Go To Page
d)
Address Bar
58.
Notepad is an example of
a)
Text editor
b)
Web Authoring Software
59.
when it is usable by everyone, including those with disabilities
a)
Navigation
b)
Accessibility
c)
Usability
d)
User Interface
60.
—How the user finds their way around the information system.
a)
Navigation
b)
Accessibility
c)
Usability
d)
User interface
61.
Originally intended for use by non-profit organizations, and still primarily used by some.
a)
.gov
b)
.edu
c)
.org
d)
.net
62.
This domain extension is limited to specific educational institutions such as, but not limited to, primary schools, middle schools, secondary schools, colleges, and universities.
a)
.gov
b)
.org
c)
.edu
d)
.com
63.

What's a domain?

a)

spot on a web page that when clicked will display a web page

b)

the home address of a web page, also known as the Uniform Resource Loccator

c)

software that decodes HTML and allows you to see pages on the World Wide Web

d)

in the URL address the registered name of the website

64.

“WWW” is the abbreviation for which of the following?

a)

World Without Websites

b)

World Wide Web

c)

Workforce Wide Web

d)

World Wide Watch

65.

What is the place where websites are stored, and works a lot like your computer's hard drive?

a)

Desktop computer

b)

mainframe

c)

server

d)

One Drive

66.

Who is considered by many to be the "Father of the World Wide Web" and the creator of HTML?"

a)

Tim Berners-Lee

b)

Tim Cook

c)

Tim Sweeney

67.
Input device which has keys with letters of the alphabet printed on them.
a)
Keyboard
b)
Mouse
c)
Monitor
d)
Printer
68.
Online information is always trustworthy.
a)
True
b)
False
69.

More than 90 percent of websites on the Internet are coded using HTML.

a)

True

b)

False

70.

Website Content is the text, images, and other elements included in a web page.

a)

True

b)

False