Unit 1 Flashcards

Wed Design and Development

1
Q

what is an end user requirement for a site?

A

An End user requirement must be an action that the user need to take.

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

what is a functional requirement for a site?

A

A functional requirement is an activity that a system has to perform.

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

What is a Wireframe?

A

a Wireframe is a plan of a window in a program or page in a website

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

what are the 2 navigation types for a site

A

Linear and Hierarchical Navigation

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

what should all html files contain at the top of the page

A

!DOCTYPE html

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

which heading the the bigger one h1 or h3

A

h1 is going to be the bigger heading

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

what does a div tag do

A

it is used so that CSS styles can be applied to a group of elements.

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

what does ol stand for

A

ordered lists(numbered)

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

what does ul stand for

A

unordered lists(bullet pointed)

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

how many different types of hyperlinks are there

A

4 different hyperlinks

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

what are the number of different types of hyperlinks

A

internal,enternal,relative,absolute

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

when does onmouseout occur

A

when the cursor is moved away from an element such as a button or a heading.

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

when does onmouseover occur

A

when the cursor is hovered over an element such as a button or a heading.

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

what does CSS stand for

A

Cascading Style Sheets

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

what is an external style sheet useful for

A

To apply a rule to multiple pages

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

What is an external stylesheet

A

An external style sheet is a separate CSS file that can be accessed by creating a link within the head section of the webpage

17
Q

What is an internal stylesheet useful for

A

To apply a rule to a single page

18
Q

What is an internal stylesheet

A

You define internal styles in the head section of an HTML page

19
Q

What is inline style

A

Inline styles are styles that are applied to a specific element within the body section of the webpage.