NEW
Font size
WorksheetsITAA Unit 4: exam
Total questions: 39
Worksheet time: 35mins
What display property changes the display of list items in a line?
inline
block
by the end
line
The DOM Viewer allows you to visually examine HTML structure, select and insert new elements.
The CSS Designer allows you to create new content boxes within a site
When saving your work, Dreamweaver will save a _____file type.
.DW
.HTML
.CSS
This panel allows you to place items in your webpage without coding by hand
DOM panel
CSS Designer panel
Properties panel
Insert panel
The <body> contains everything that is displayed on the webpage.
True
False
The LAST tag on a HTML document
</body>
<html>
</html>
None on the above
Tag is used to insert images
<img>
<picture>
<photo>
<image>
What tag is this? </body>
Opening Body tag
Paragraph tag
Closing body tag
Header tag
The correct way to use an h1 tag
<h1>Hello</h1>
<h1>"Hello
{h1}Hello{/h1}
<h1>Hello<h1>
Inserts a line break
<hr>
<br>
<ol> </ol>
<li> </li>
What goes in the <head> section
Links
Title
Hair
Body
What tag will place text in a browser tab?
<title>The 90s</title>
<h1>The 90s</h1>
<head>The 90s</head>
<li>The 90s</li>
Which tag will create this large text?
<h1>The 90s</h1>
<p>The 90s</p>
<body>The 90s</body>
<html>The 90s</html>
What tag will place this image?
<img src="phone.png"/>
<image src="phone.png"/>
<image>phone</image>
<img src=phone.png>
What does p in </p> stand for?
picture
paragraph
python
page
Why are we learning how to create and modify HTML 'container' boxes?
It will help you create online games.
To understand how to create layout design for the web.
Container boxes help you create text color.
The tags that are used to create container boxes are:
<box>
<style>
<div>
Why do we place 'boxes within boxes' so much?
Because it's part of HTML.
It allows you to format your content the way you envision.
It allows you to create animation on a web page.
You've made four container boxes, and want them all to have a green background color. You need to:
<style>
div {
background-color: green;
}
</style>
<body>
div {
background-color: green;
}
</body>
<style>
<box> {
background-color: green;
}
</style>
You have four yellow container boxes, and want to change ONE box to blue. You...
have to name the box with an ID or CLASS, and style it separately.
have to style each box separately in the CSS.
have to change the colors inside the HTML.
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
True
false
If you want to 'overlap' or 'stack' 2 or more container boxes, you should use:
Overflow property
Position property
Z-index property
What tag must surround your CSS for single page sites?
<body>
<style>
<HTML>
<CSS>
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:
Overflow property
Position property
Z-index property
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....
use 'overflow: auto'
use 'overflow: hidden'
use 'overflow: visible'
p {color: red;}
What symbols go around the properties for each CSS declaration?
p {color: red;}
border.