exam Flashcards

1
Q

elements

A

includes an opening tag, content and a closing tag.

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

tags

A

are used to mark when an element begins and ends

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

attributes

A

additional information about an element, such as img src; here the src is the attribute

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

content

A

the things that users see on the browser; the things that make up a page

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

accessibility

A

creating content that is accessible for people with disabilities as well, eg. img alt

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

hypertext

A

text that contains links to other text

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

anchor

A

elements that create hyperlinks between a source anchor and a destination anchor

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

semantics

A

semantic markup consists of semantic elements which are elements with a specific meaning, such as section, img and h1

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

responsitivity

A

creating web pages that look good on all devices; will automatically adjust to the screen- adding the meta tag is important

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

breakpoints

A

an intentionally set pause in a program when executing it

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

grid

A

a css layout system; consists of rows and columns which makes it two-dimensional

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

flexbox

A

a css layout system; consist of either rows or columns; it is one-dimensional

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

tables

A

a structured set of data consisting of rows and columns. the data is usually related to each other, for example you could make a schedule this way

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

box model

A

a css layout model where a box wraps around the rest of the elements / some of them

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

DOM

A

document object model; an application programming interface aka API for html (and xml) documents. it defines the logical structure of the documents

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

character entities

A

certain reserved characters must be replaces with character entities, eg. less than < needs to be written as < in html

17
Q

internationalization

A

the process of designing software that can be adapted to other languages. on the other side, localization means adapting software for a local region

18
Q

UTF-8

A

when you declare a charset as utf-8, you are telling the browser to use the utf-8 character encoding system which is a method for converting your typed characters into machine-readable code

19
Q

nesting

A

putting elements within other elements to form a proper order

20
Q

image formats

A

describes how data related to the image is stored (compressed, uncompressed or vector format) eg. JPEG, GIF