HTML5 Tags Flashcards

1
Q

<a></a>

A

Defines a hyperlink.
Placement: Inline
Content: Inline, and text
Start/End Tag: Start tag: required, End tag: required

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

<abbr></abbr>

A

Defines an abbreviated form of a longer word or phrase.
Placement: Inline
Content: Inline and text
Start/End Tag: Start tag: required, End tag: required
Note: The title attribute is used inside the <abbr> tag to provide an expanded form of the abbreviation when the user mouse over it.</abbr>

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

<address></address>

A

Specify the author’s contact information.
Placement: Block
Content: <p>, inline, and text
Start/End Tag: Start tag: required, End tag: required</p>
Note: Typically, the address tag should be included inside the section.

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

< area >

A

Defines a hot-spot region on an image, and associates it with a hypertext link. This element is used only within an element.
Parent:
Content: None. It is an empty element.
Start/End Tag: Start tag: required, End tag: forbidden

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

< article > < / article >

A

Defines an article.
Placement: Block
Content: Block, inline, and text
Start/End Tag: Start tag: required, End tag: required

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

< aside > < / aside >

A

Defines some content loosely related to the page content.
Placement: Block
Content: Block, inline, and text
Start/End Tag: Start tag: required, End tag: required

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

< audio > < / audio >

A

Embeds a sound, or an audio stream in an HTML document.
Placement: Block
Content: , , and text
Start/End Tag: Start tag: required, End tag: required

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

<b></b>

A

Displays text in a bold style.
Placement: Inline
Content: Inline and text
Start/End Tag: Start tag: required, End tag: required

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

< base >

A

Defines the base URL for all relative URLs in a document.
Parent: < head >
Content: None. It is an empty element.
Start/End Tag: Start tag: required, End tag: forbidden

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

< bdi > < / bdi >

A

(stands for bi-directional isolation)Represents text that is isolated from its surrounding for the purposes of bidirectional text formatting.
Placement: Block
Content: Inline, and text
Start/End Tag: Start tag: required, End tag: required

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

< bdo > < / bdo >

A

(short for bidirectional override)Overrides the current text direction.
Placement: Inline
Content: Inline and text
Start/End Tag: Start tag: required, End tag: required

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

< blockquote > < / blockquote >

A

Represents a section that is quoted from another source.
Placement: Block
Content: Block, inline, and text
Start/End Tag: Start tag: required, End tag: required

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

< body > < / body >

A
Defines the document's body.
Parent: 
Placement: Block
Content: Block, inline, and text
Start/End Tag: Start tag: optional, End tag: optional
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

< br >

A

Produces a single line break.
Placement: Inline
Content: None. It is an empty element
Start/End Tag: Start tag: required, End tag: forbidden

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

< button > < / button >

A

Creates a clickable button.
Placement: Inline
Content: Any block, inline, and text
Start/End Tag: Start tag: required, End tag: required

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

< canvas > < / canvas >

A

Defines a region in the document, which can be used to draw graphics on the fly via scripting (usually JavaScript).
Placement: Inline
Content: Inline, and text
Start/End Tag: Start tag: required, End tag: required

17
Q

< caption > < / caption >

A

Defines the caption or title of the table.
Placement: Inline
Content: Inline and text
Start/End Tag: Start tag: required, End tag: required

18
Q

< cite > < / cite >

A

Indicates a citation or reference to another source.
Placement: Inline
Content: Inline and text
Start/End Tag: Start tag: required, End tag: required

19
Q

< code > < / code >

A

Specifies text as computer code.
Placement: Inline
Content: Inline and text
Start/End Tag: Start tag: required, End tag: required
Note: Since spacing is important when presenting the computer codes, the <pre> element is most frequently used as a container for <code> elements because it preserves whitespace and line breaks.</code></pre>

20
Q

< col >

A

Defines attribute values for one or more columns in a table.
Parent: < colgroup >, < table >
Content: None, It is an empty element
Start/End Tag: Start tag: required, End tag: forbidden

21
Q

< colgroup > < / colgroup >

A

Specifies attributes for multiple columns in a table.
Parent: < table >
Content: 0 or more < col > elements
Start/End Tag: Start tag: required, End tag: required

22
Q

< data > < / data >

A

Links a piece of content with a machine-readable translation.
Placement: Inline
Content: Inline, and text
Start/End Tag: Start tag: required, End tag: required

23
Q

< datalist > < /datalist >

A

Represents a set of pre-defined options for an element.
Placement: Block
Content: < option > elements
Start/End Tag: Start tag: required, End tag: required

24
Q

< dd > < / dd >

A

Short for definition description. Specifies a description, or value for the term (<dt>) in a description list (</dt><dl>).
Parent: < dl >
Content: Block, inline, and text
Start/End Tag: Start tag: required, End tag: optional
</dl>

25
Q

< del > < / del >

A

Represents text that has been deleted from the document.
Placement: Block or inline, depending on the content
Content: Any block, inline, and text (but cannot contain block content when used as an inline element)
Start/End Tag: Start tag: required, End tag: required

26
Q

< detail > < / detail >

A

Represents a widget from which the user can obtain additional information or controls on-demand.
Placement: Block
Content: Block, inline, and text
Start/End Tag: Start tag: required, End tag: required