wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

ITAA Unit 4: exam

Total questions: 39

Worksheet time: 35mins

Name
Class
Date
1.

What display property changes the display of list items in a line?

a)

inline

b)

block

c)

by the end

d)

line

2.

The DOM Viewer allows you to visually examine HTML structure, select and insert new elements.

a)
True
b)
False
3.

The CSS Designer  allows you to create new content boxes within a site

a)
True
b)
False
4.

When saving your work, Dreamweaver will save a _____file type.

a)

.DW

b)

.HTML

c)

.CSS

5.

This panel allows you to place items in your webpage without coding by hand

a)

DOM panel

b)

CSS Designer panel

c)

Properties panel

d)

Insert panel

6.

The <body> contains everything that is displayed on the webpage.

a)

True

b)

False

7.

The LAST tag on a HTML document

a)

</body>

b)

<html>

c)

</html>

d)

None on the above

8.

Tag is used to insert images

a)

<img>

b)

<picture>

c)

<photo>

d)

<image>

9.

What tag is this? </body>

a)

Opening Body tag

b)

Paragraph tag

c)

Closing body tag

d)

Header tag

10.

The correct way to use an h1 tag

a)

<h1>Hello</h1>

b)

<h1>"Hello

c)

{h1}Hello{/h1}

d)

<h1>Hello<h1>

11.

Inserts a line break

a)

<hr>

b)

<br>

c)

<ol> </ol>

d)

<li> </li>

12.

What goes in the <head> section

a)

Links

b)

Title

c)

Hair

d)

Body

13.

What tag will place text in a browser tab?

a)

<title>The 90s</title>

b)

<h1>The 90s</h1>

c)

<head>The 90s</head>

d)

<li>The 90s</li>

14.

Which tag will create this large text?

a)

<h1>The 90s</h1>

b)

<p>The 90s</p>

c)

<body>The 90s</body>

d)

<html>The 90s</html>

15.

What tag will place this image?

a)

<img src="phone.png"/>

b)

<image src="phone.png"/>

c)

<image>phone</image>

d)

<img src=phone.png>

16.

What does p in </p> stand for?

a)

picture

b)

paragraph

c)

python

d)

page

17.
What does HTML stand for?
a)
Home Tool Markup Language
b)
Hyperlinks and Text Markup Language 
c)
Hypertext Markup Language
d)
Hypertext Medium Language 
18.
The <head></head> tag contains
a)
A picture for the top of the page
b)
Important information about the document
c)
Contact information for the site owner
d)
Navigation bar
19.
True or false: tags can be placed inside of other tags. 
a)
True
b)
False
20.
Which of these heading tags is the smallest?
a)
<h1>
b)
<h2>
c)
<h5>
d)
<h6>
21.
What tag would you use to break up this address into the correct format?
a)
<p>
b)
<hr>
c)
<br>
d)
<b>
22.

Why are we learning how to create and modify HTML 'container' boxes?

a)

It will help you create online games.

b)

To understand how to create layout design for the web.

c)

Container boxes help you create text color.

23.

The tags that are used to create container boxes are:

a)

<box>

b)

<style>

c)

<div>

24.

Why do we place 'boxes within boxes' so much?

a)

Because it's part of HTML.

b)

It allows you to format your content the way you envision.

c)

It allows you to create animation on a web page.

25.

You've made four container boxes, and want them all to have a green background color. You need to:

a)

<style>

div {

background-color: green;

}

</style>

b)

<body>

div {

background-color: green;

}

</body>

c)

<style>

<box> {

background-color: green;

}

</style>

26.

You have four yellow container boxes, and want to change ONE box to blue. You...

a)

have to name the box with an ID or CLASS, and style it separately.

b)

have to style each box separately in the CSS.

c)

have to change the colors inside the HTML.

27.

If you're wanting more than one container box to be on the same line on a web-page, a CSS 'width' attribute has to be written

a)

True

b)

false

28.

If you want to 'overlap' or 'stack' 2 or more container boxes, you should use:

a)

Overflow property

b)

Position property

c)

Z-index property

29.

What tag must surround your CSS for single page sites?

a)

<body>

b)

<style>

c)

<HTML>

d)

<CSS>

30.

You have three container boxes: One yellow, one red, one is blue. When overlapping all three, to ensure the blue box is on TOP, you need to use:

a)

Overflow property

b)

Position property

c)

Z-index property

31.

Your editor gives you the 'copy' (text) that goes into a container box with a pink background you have styled. If you don't want the 'copy' to spill outside of your pink box but you can't resize your pink box....

a)

use 'overflow: auto'

b)

use 'overflow: hidden'

c)

use 'overflow: visible'

32.
Which is the selector in this CSS?
p {color: red;}
a)
p
b)
color
c)
red
33.
What does CSS stand for? 
a)
Creative Style Sheets
b)
Cascading Style Sheets
c)
Colorful Style Spread
d)
Computer Style Spread
34.
Which is correct CSS syntax? 
a)
{ body; color=black;}
b)
body: color= black
c)
body {color:black;}
d)
(body color is black) 
35.

What symbols go around the properties for each CSS declaration?

a)
< >
b)
[ ]
c)
{ }
d)
( )
36.
Which is the value in this CSS?
p {color: red;}
a)
p
b)
color
c)
red
37.
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.
38.
The style that you are applying to a selector, e.g. border.
a)
Property
b)
Value
c)
Keyword
d)
Length Units
39.
_______ is generally any single line of CSS that appears between the curly braces, whether shorthand or longhand.
a)
Keyword
b)
Declaration 
c)
Value
d)
Boogers