Web Design Flashcards

1
Q

Structure (HTML)

A

The skeleton of the design (<p> <h1> <img></img> <a> )</a>

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

Presentation (CSS)

A

The appearance of the design (font-size, color, background image, table border, position, link styles)

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

Element

A

Everything between the starting and ending tag. Conveys structural and semantic meaning (<strong> means its important therefore bold)</strong>

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

Empty Element

A

Element that is closed in the starting tag (<br></br>)

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

Cascade Order

A
  1. Browser default
  2. External style sheet
  3. Internal style sheet (in the head section)
  4. Inline style (inside an HTML element)

Last rule applied wins - #4

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

Float

A

A float is a box that is shifted to the left or right on the current line. The most interesting characteristic of a float (or “floated” or “floating” box) is that content may flow along its side (or be prohibited from doing so by the “clear” property). Content flows down the right side of a left-floated box and down the left side of a right-floated box.

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

Block Element

A

In normal flow these elements stack on top of each other (<h1>, <p>, <ul>, )

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

Inline Element

A

In normal flow these elements sit next to each other (<b>, , <a>, <img></img>)</a></b>

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

<div>
</div>

A

Block level element that defines a section in a document.

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

<span></span>

A

Inline element that defines a section in a document.

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

Box-Model (outside to inside)

A

Margin - Clears an area around the border. The margin does not have a background color, it is completely transparent
Border - A border that goes around the padding and content. The border is affected by the background color of the box
Padding - Clears an area around the content. The padding is affected by the background color of the box
Content - The content of the box, where text and images appear

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

Relative Link

A

A link that points to a file within the web page.

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

Absolute Link

A

A link that points to another web page.

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

Normal Document Flow

A

It’s how a page is presented when you do nothing to it with regard to structural styling.

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