HTML5 Flashcards

1
Q

Elements

A

Specific components of an HTML document that provide content and attributes to a Webpage.

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

Markup Tags

A

Enclose elements in angle brackets.

aka Start Tag / End Tag

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

Wicket

A

aka Bracket

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

Container Tag

A

Comes in pairs to enclose a block of text.

< strong>text here< /strong>

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

Empty Tag

A

Stand alone, do not modify a block of text.

aka Self-closing tags

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

Attribute

A

Specifies an aspect of an element, not always required

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

Value

A

Gives value to element and its attribute. Surrounded by quotation marks.

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

Metadata

A

Data about the document

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

Style Sheet

A

.css file name extension, placed in a subdirectory for Webpage.

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

< !DOCTYPE>

A

Document Type Declaration

Describes markup language and version of your code

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

Tag Nesting

A

Tag within a tag. Tag opened last closes first.

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

Block-Level Elements

A

Markup Elements that affect an entire paragraph or multiple paragraphs. Automatically preceded and followed by paragraph breaks.

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

Text-Level Elements

A

Markup elements that affect something as small as a character or word

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

Fixed-Width Font

A

Every character has equal width. Different from proportional-width font.

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

Unicode

A

Universal character set that supports all written languages and scholarly discipline.

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

HTML Entities

A

Non-keyboard characters, requires the escape sequence & followed by the code, followed by ;

17
Q

Fixed-Width Layout

A

Assigns specific pixel widths using < div> tag. Ensures the display won’t vary by browser but may not render correcting if window size changes
aka Absolute Positioning

18
Q

Liquid Layout

A

Assign percentage values to elements, size will change dynamically. This is the industry standard.
aka Relative Positioning