HTML5 Flashcards

1
Q

article

A

sectioning element, and is used to wrap independent, self-contained content. The tag works well with blog entries, forum posts, or news articles.

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

header

A

used to wrap introductory information or navigation links for its parent tag and works well around content that’s repeated at the top on multiple pages.

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

nav

A

tag meant to wrap around the main navigation links in your page.

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

footer

A

primarily used to contain copyright information or links to related documents that usually sit at the bottom of a page.

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

audio

A

gives semantic meaning when it wraps sound or audio stream content in your markup.

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

figure, figcaption

A

Used together, these items wrap a visual representation (like an image, diagram, or chart) along with its caption.

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

label

A

wraps the text for a specific form control item, usually the name or label for a choice.

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

fieldset

A

a way to semantically show a group of elements are part of a set. Often uses the legend tag afterwards to provide a description afterwards.

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

time

A

This is an inline element that can wrap a date or time on a page. A valid format of that date is held by the datetime attribute. This is the value accessed by assistive devices.

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

accesskey attribute

A

specify a shortcut key to activate or bring focus to an element. This can make navigation more efficient for keyboard-only users.

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

tabindex attribute

A

allows an element to be focused on, can work in conjunction with the :focus pseudo class. Goes in order of sequential numbering i.e. 1, 2 ,3

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