HTML Images A/V Lists Tables Flashcards

1
Q

img

A

Embeds an image
src=”” for the source
alt=”” to show text if image fails

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

map area

A

Creates an image map with
interactive areas

img src=""
map name=""
  area shape="" coords="" href="" alt=""
  area shape="" coords="" href="" alt=""
/map
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

picture

A

An element to house multiple images
for responsive design

picture
  source media="min-width" srcset=""
  source media="min-width" srcset=""
  img src="" 
/picture
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

svg

A

A container for Scalable Vector Graphics
Draws 2D shapes
Scales better than canvas
Can be modified with CSS / JS

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

canvas

A

An element to draw pixels on the fly
via scripting

More performant than svg but less scalable
Canvas can only be modified with JS
Canvas is raster based and composed of pixels

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

video source

A

A container for video sources

video width=”” height=’”” controls
source src=”” type=””
source src=”” type=””
/video

Types: video/
mp4 ogg webm

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

audio source

A

A container for audio sources

audio controls
source src=”” type=””
source src=”” type=””
/audio

Types: audio/
mp3 wav ogg

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

track

A

specifies text for when audio/video

is playing

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

coords=””

shape=””

A

Attributes for specifying the shape

and coordinates of an area element

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

height=””

A

an attribute that specifies the height
of an element

canvas img iframe input object video

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

width=””

A

Specifies the width of the element

canvas img iframe video input object

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

controls

A

The attribute that fills out play pause

seeking volume, etc.

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

autoplay loop

A

Audio/Video attributes that set autoplay and loop

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

table

A

Creates an HTML table with

tr th and td

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

tr

A

Table Row

Creates rows for a table

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

th

A

Table Heading

creates headings in a row tr

17
Q

td

A

Creates data cells in a row tr

18
Q

thead tbody tfoot

A

A container for the table head row

A container for the table body rows

A container for the table footer row

19
Q

colgroup col

A

Specifies what to do with columns in a table

colgroup
col span=”3” style=””
col style=””
colgroup