Web Design Flashcards

1
Q

What does HTML stand for?

A

Hyper text markup language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which file extension is used for starting web pages?

A

.html

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What should be the first element in any web page?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which is not part of an XHTML element?

A

Anchor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Ho would you create a link to another web page named “page2.html”?

A

<a>Link to Page 2</a>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does the element <p> stand for?</p>

A

Paragraph

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the syntax for an XHTML commet?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what bis the start tag for an individual item in a list?

A

<li>
</li>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Which of the following will create a bulleted list?

A

<ul></ul>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is wrong with the following XHTML code?

<a>Visit YouTube</a>

A

http://

supposed to be “http://www.”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is wrong with the following?

<img></img>

A

src

source is supposed to be src

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What will happen if we specify an image’s height and width outside of its true original proportion?

A

The web browser will display a distorted version of the image

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is generally considered the best format to use for color photographs on the web?

A

.jpg

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Which of the following is not an available attribute for the <img></img> element?

a) alt
b) filename
c) height
d) width

A

b) filename

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What image format can support animation?

A

.gif

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What does target=”_blank” do when specified in an <a> element?</a>

A

Tells the browser to open a link in a new window

17
Q

A bookmark link starts with which symbol in the href attribute?

A

#

18
Q

What would a blind person hear in a screen reader in the place of a web image?

A

Whatever text is specified in an alt attribute

19
Q

Which of the following statements is incorrect?

a) The <h1> header element should be used only once per page
b) An <h3> header element indicates that something is more important than what is in an <h4> element
c) A lower head element such as <h4>, should not be used unless all the higher ones, <h1> through <h3>, have been used first
d) Generally, a higher header element, such as <h1>, will display in larger text than a lower header element, such as <h3></h3></h1></h3></h1></h4></h4></h3></h1>

A

c) A lower head element such as <h4>, should not be used unless all the higher ones, <h1> through <h3>, have been used first</h3></h1></h4>

20
Q

Which of the following is not an XHTML element related to displaying lists?

a) <li>
b)
c) <ul>
d) </ul><ol></ol></li>

A

b)

21
Q

What are the valid table elements?

A