Designing Digital Applications Flashcards

1
Q

common webpage dimension and safety

A

1024x768 (971x608 safety)

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

HTML (Hypertext Markup Language)

A

the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript.

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

commands (HTML)

A

implemented by “tags” (). the end tag always includes a / (<p>, </p>). every html doc starts with , ends with , tells the browser it is an html document.

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

Cascading Style Sheets (CSS)

A

a style sheet language used for describing the presentation of a document written in a markup language such as HTML. designed to enable the separation of presentation and content, including layout, colors, and fonts.

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

XHTML

A

part of the family of XML markup languages. It mirrors or extends versions of the widely used HyperText Markup Language (HTML). Case-sensitive (HTML is not).

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

SGML vs. XML

A

HTML and XML are both descendants of an earlier markup language called SGML (Standard Generalized Markup Language). SGML is a complicated set of rules that define document structures. XML is a subset of SGML that does the same thing, using fewer rules.

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

HTML5

A

a markup language used for structuring and presenting content on the World Wide Web. It is the fifth and latest major HTML version that is a World Wide Web Consortium (W3C) recommendation.

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

Javascript

A

a logic-based programming language that can be used to modify website content and make it behave in different ways in response to a user’s actions (lets web developers design interactive sites)

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

Responsive design

A

is fluid and adapts to the size of the screen no matter what the target device.

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

Adaptive design

A

uses static layouts based on breakpoints which don’t respond once they’re initially loaded. Adaptive works to detect the screen size and load the appropriate layout for it – generally you would design an adaptive site for six common screen widths: 320, 480, 760, 960, 1200, 1600.
On the surface, it appears that adaptive requires more work as you have to design layouts for a minimum of six widths. However, responsive can be more complex as improper use of media queries (or indeed not using them at all) can make for display and performance issues.

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