Web Design

Preview:

DESCRIPTION

Web Design. Final Exam Review. Get a partner…. Take turns answering questions; the correct answer will appear when you click. Good luck!. Question:. The default horizontal alignment for is--. left. Question:. Which tag is used to create a line break?. < br />. Question:. - PowerPoint PPT Presentation

Citation preview

F I N A L E X A M R E V I E W

WEB DESIGN

GET A PARTNER…TA K E T U R N S A N S W E R I N G Q U E S T I O N S ; T H E C O R R E C T A N S W E R

W I L L A P P E A R W H E N YO U C L I C K . G O O D LU C K !

The default horizontal alignment for <P> is--

QUESTION:

left

Which tag is used to create a line break?

QUESTION:

<br />

Which tag creates a numbered list?

QUESTION:

<ol>

How many header elements (H) are available in HTML?

QUESTION:

6<h1> through <h6><h6> is the smallest

What is wrong with the syntax (setup) on the code shown at right?

QUESTION:

Nesting issues (tags not closed in reverse order they were opened)

<b><i>Bunnies!</b></i>

What tag creates a bullet?

QUESTION:

<li>

• Hi• Hello• What’s up?

Which is an ABSOLUTE reference? (at right)

What is the difference between an ABSOLUTE and a RELATIVE hyperlink reference?

QUESTION:

The bottom is “absolute” because it uses http:// meaning that

regardless of where you are at, you can get to the site on the internet. A relative reference just points to file

in a local folder.

<a href=“page2.html”>

<a href=“http://www.mypage.com/page2.html”>

What is the code used to insert a picture of a pig named pig.gif with a text alternative that says oink?

QUESTION:

<img src=“pig.gif” alt=“Oink!” />

What code would be used to insert a standard bulleted list?

QUESTION:

<ul>

What is the standard code to bold words?

What is the “old” deprecated tag for bold?

QUESTION:

<strong>

(replaced <b>)

What is the standard code to italicize words?

What is the “old” deprecated tag for italics?

QUESTION:

<em>

(replaced <i>)

What is the tag used to insert a horizontal line?

QUESTION:

<hr />

What is the tag used to insert a paragraph with indented left and right margins?

QUESTION:

<blockquote>

What would the size be of the text pointed to if all are headings in HTML?

QUESTION:

<h4>

What is the hexadecimal color code for BLACK?

QUESTION:

#000000

#FFFFFF represents what color?

QUESTION:

white

Block OR inline element?

<p>

QUESTION:

BLOCK

Block OR inline element?

<ul>

QUESTION:

BLOCK

Block OR inline element?

<hr />

QUESTION:

BLOCK

Block OR inline element?

<br />

QUESTION:

INLINE

Block OR inline element?

<strong>

QUESTION:

INLINE

Block OR inline element?

<span>

QUESTION:

INLINE

Block OR inline element?

<img>

QUESTION:

INLINE

Block OR inline element?

<ol>

QUESTION:

BLOCK

Block OR inline element?

<em>

QUESTION:

INLINE

The information in the <TITLE> tag displays where?

QUESTION:

Blue title bar or tab

What is the purpose of the “alt” attribute in an image?

QUESTION:

It is used for accessibility purposes (screen readers, specifically) or if

images are disabled

Which TWO image formats are most widely accepted on the web?

QUESTION:

GIF and JPG (PNG are supported but are not as frequent…yet!)

Which image format supports both transparency and is used for animation?

QUESTION:

GIF

What symbol must all hexadecimal color codes appear with?

QUESTION:

#

Which CSS property is used with this value:

Verdana, Arial, sans-serif

QUESTION:

font-family

Which CSS property is used with this value:

underline

QUESTION:

text-decoration

Which CSS property is used with this value:

italic

QUESTION:

font-style

Which CSS property is used with this value:

bold

QUESTION:

font-weight

Which CSS property is used with this value:

#000000

QUESTION:

background-color ORcolor OR border-color

Which CSS property is used with this value:

url(background.gif)

QUESTION:

background-image OR list-style-image

Which CSS property is used with this value:

thick

QUESTION:

border-width

Which CSS property is used with this value:

dotted

QUESTION:

border-style

Which CSS property is used with this value:

1.6em

or random numbers…

QUESTION:

line-height

Which CSS property is used with this value:

overline

QUESTION:

Text-decoration

Which CSS property is used with this value:

Small, large or 10pt

QUESTION:

Font-size

What is the default bullet type called?

QUESTION:

disc

What is the hollow bullet type called?

QUESTION:

circle

To set up the layout and structure of the website, it is most practice to utilize:

QUESTION:

divs

What is that fancy thing up by the URL called?

QUESTION:

Favicon

The default file format for Fireworks files that maintains both editable layers and transparency is:

QUESTION:

PNG format

If this graphic was used on a webpage and each US state was clickable and would take you to a different website, what graphic feature would it be?

QUESTION:

imagemap

What does this button adjust in Fireworks?

QUESTION:

looping

An animated GIF is an image with more than one:

QUESTION:

State/frame

What graphic feature is this user creating in Dreamweaver?

QUESTION:

imagemap

What Fireworks fill is used on this graphic?

QUESTION:

gradient

What Fireworks filter is used on this text?

QUESTION:

Drop shadow

What Fireworks filter is used on this text to give it a 3D raised appearance?

QUESTION:

Bevel

Why does the hyperlinked image have a blue border around it?

QUESTION:

Hyperlinked images have a border unless styled for a border of none.

For the .bor class that is created in this document, how would an image using this class appear?

QUESTION:

With a red border around it

If you inserted a bulleted list on the webpage connected to this CSS page, what kind of bullets would display?

QUESTION:

Picture bullets of some sort

What color is the basic text for the document, provided it is not in a special DIV or class?

QUESTION:

Black (look in body); not set and black is default

If someone is viewing this webpage and doesn’t have Palatino Linotype font, what font will it display in, provided it is on his computer?

QUESTION:

Book Antiqua

Based on the CSS, what color will hyperlinks that have not been clicked on display as?

QUESTION:

Blue (default, not set)

In the CSS, a number sign (#) in front of a selector denotes creation of a:

QUESTION:

DIV

In the CSS, a period (.) in front of a selector denotes creation of a:

QUESTION:

CLASS

JPG images, typically used or photographs, can contain up to this many colors:

QUESTION:

16 million

GIF images, typically used or line art, can contain up to this many colors:

QUESTION:

256

Recommended