TOPIC 1 (PRE-FINALS) Flashcards

1
Q

makes your web page look good on all devices

A

Responsive web design

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

uses only HTML and CSSResponsive web design

A

Responsive web design

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

is not a program or a JavaScript

A

Responsive web design

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

Web pages can be viewed using many different devices: desktops, tablets, and phones. Your web page should look good, and be easy to use, regardless of the device. Web pages should not leave out information to fit smaller devices, but rather adapt its content to fit any device:

A

Designing for the best experience

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

Web pages can be viewed using many different devices: desktops, tablets, and phones. Your web page should look good, and easy to use, regardless of the device. Web pages should not leave out information to fit smaller devices, but rather adapt its content to fit any device

A

Desktop-First Design

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

Advantages of Desktop First Design

A
  • Rich Features: Designing for desktops allows for the inclusion of more complex features and functionalities
  • Familiarity: Many designers are more accustomed to this approach, having designed for desktops for years.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Challenges of Desktop First Design

A
  • Performances Issues on Mobile: A site designed for desktops might not perform as well on mobile devices
  • Possible Over-Complexity: Theres a risk of adding too many features, which might not be necessary for mobile users.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

is a strategy where designers create as website or application for mobile devices first and then scale it up for larger screens. This approach emerged as a response to the rapid growth of mobile device usage.

A

Mobile first design

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

Advantages of Mobile First Design

A
  • Optimized User Experience: Mobile-first ensures that the design is tailored for smaller screens, leading to a smoother user experience.
  • Performance Boost: Mobile devices often have processing power and bandwidth limitations. Designing for mobile first ensures that the site is optimized for these constraints
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Challenges of Mobile First Design

A
  • Scaling Up: Sometimes, scaling up from a mobile design to a desktop can be challenging, especially if certain elements don’t translate well to larger screens
  • Limited Features: Due to the constraints of mobile devices, some features might be omitted or simplified.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

HTML5 introduced a method to let web designers take control over the viewport, through the <meta></meta> tag. You should include the following <meta></meta> viewport element in all your web pages.

A

Viewport

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

This gives the browser instructions on how to control the page’s dimensions and scaling. The width=device-width part sets the width of the page to follow the screen-width of the device (which will vary depending on the device). The initial-scale=1.0 part sets the initial zoom level when the page is first loaded by the browser.

A

Viewport

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

in CSS3 extended the CSS2 media types idea: Instead of looking for a type of device, they look at the capability of the device.

A

Media queries

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

Using _________ are a popular technique for delivering a tailored style sheet to desktops, laptops, tablets, and mobile phones (such as iPhone and Android phones).

A

Media queries

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

CSS media types

A

All
Print
Screen

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

Used for all media type devices

17
Q

Used for print preview mode

18
Q

Used for computer screens, tablets, smart-phones etc.

19
Q

Orientation of the viewport. Landscape or portrait

A

Orientation

20
Q

Maximum height of the viewport

A

max-height

21
Q

Minimum height of the viewport

A

min-height

22
Q

Height of the viewport (including scrollbar)
height

23
Q

Maximum width of the viewport

24
Q

Minimum width of the viewport

25
Q

Width of the viewport (including scrollbar)

26
Q

Consists of a media type and can contain one or more media features, which resolve to either true or false

A

MEDIA QUERY SYNTAX

27
Q

This keyword inverts the meaning of an entire media query

28
Q

This keyword prevents older browsers that do not support media queries from applying the specified styles. It has no effect on modern browsers

29
Q

This keyword combines a media type and one or more media features