Web Design Rules and Framework Flashcards

1
Q

What is used when people are being quoted?

A

blockquote

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

What can you say about amount of typefaces ?

A

Don’t use more than 2, especially when you’re beginning

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

A way to limit type size

A

Use a ‘type scale’ tool

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

Line height in relation to size of text?

A

The smaller or longer the text, the larger the line height needs to be!

normal-sized text –> 1.5 and 2
big text –> below 1.5

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

When increasing something like line-height from the console which key combi would you use

A

With alt + arrow you can increase with small amount

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

You need a least two types of colors in your color palette: A main color and a ….

A

grey color

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

.btn-link{
padding: 16px 32px;
}

Why is this failing?

A

Link is an inline element and with inline element the box model does not work as expected

Solution: set it to display:inline-block

Don’t set it to block then it would take up all the width

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

Difference links and buttons?

A

Links take the user to a new location such as a new web page or section.

Buttons trigger some action, such as showing content on the page that was previously hidden

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

How to apply shadows?

A

small shadows on smaller elements that stand out

Medium-sized shadows for larger areas that should stand out a bit more

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

What type of windows uses shadows

A

It is good for navigation and pop-up windows

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

How is the shadow property build up?

A

box-shadow: 20px 20px 20px 10px
Offset X
Offset Y
Blur
Spread

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

When is the figure tag used?

A

Common element that is used for a product card for example.

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

How is the text-shadow property build up?

A

/* offset-x | offset-y | blur-radius | color */
text-shadow: 1px 1px 2px black;

With color for example:
rgba(0, 0, 0, 0.2)

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

Why use border-radius and how to apply design-wise

A

Increase the playfulness
Make sure to match the roundness of typeface
Use it on buttons, images, icons, standout sectiont,etc

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

How to apply something to only the images of the chair class

A

.chair img{}

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

Only apply shadow to specific corner, use:

A

border-bottom-left-radius

17
Q

How to apply hierarchy to text, using what elements?

A

font size
font weight
color
whitespace

It steers the user’s attention where you want it

18
Q

What are the 4 steps from elements to webpage

A

Elements
Components
Layouts
Webpage

19
Q

When are breadcrumbs a good idea?

A

Used to help navigate site. Used on pages with complex page navigation structure

20
Q

What can be used when having many results from a list?

A

Pagination

21
Q

What is a feature box?

A

Groups together info about something.
Usually they have in common that they use an icon, bigger text and a bit of text. Or sometimes a link.

21
Q

What is an accordion element?

A

Way of showing/hiding info on demand so the window is not cluttered with content

22
Q

When are statistics used

A

Convince user with data - Powerful way to convey data

23
Q

What is a testimonial?

A

One of most important features of a website. You can’t leave out testimonials when wanting to convey trust.

23
Q

Do you need a sub menu?

A

It’s fine to not have a sub menu. If you do, sometimes you might need a lot of items like a popup box

24
Q

What are 3 trends in hero sections

A
  1. Having text on one side and image on the other
  2. Full image with text overlay
  3. Combination of some imagery and text in between
25
Q

What is popular to have in your footer?

A

Have sitemaps as well as social icons or newsletter sign up

26
Q

What is a feature row?

A

Small section of the page that describes some feature

27
Q

What is Z-pattern and F-pattern

A

Z-pattern is image on left and on the right in the next row

F-pattern is all images on the right

28
Q

When is sidebar useful?

A

Used for blogs or options in a web application for example
Or table of content / summary

29
Q
A