HTML Tags and Attributes Flashcards

0
Q

A

Contains content that should be subscript

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

A

Contains content that should be superscript.

E.G.)
HTML: 42
Display: 4^2

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

<b></b>

A

Contains content that should be bold

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

<i></i>

A

Contains content that should be italicized

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

<br></br>

A

Empty element (self-enclosing) tag which adds a line break

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

<hr></hr>

A
Horizontal rule
Empty element (self-enclosing) tag which adds a horizontal line
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

<strong></strong>

A

Contains content that indicates strong importance

Represented in bold by default

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

<em></em>

A

Contains content that shows emphasis

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

<blockquote>
</blockquote>

A

Contains quotes that take up an entire paragraph

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

Contains smaller quotes within a paragraph

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

<abbr></abbr>

A

Contains content which are abbreviated; also used for acronyms

A title attribute on the opening tag is used to specify the full term

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

<cite></cite>

A

Used when referencing a piece of work such as a book, film, or research paper; the cite element indicates where the citation is from

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

<dfn></dfn>

A

Indicates defining instance of a new term

E.G.)
A <dfn>Black hole</dfn> is a region of space from which nothing can escape

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

<address>
</address>

A

Contains contact details for the author of the page

E.G.) An email address, physical address, phone number, etc.

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

Contains content that is no longer accurate or relevant (but that should not be deleted)

The content of element is usually displayed with a line through the center

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

<dl>
</dl>

A

Creates a definition list

HTML:
<dl>
       <dt>definition term
        <dd>definition description
</dl>
16
Q

mailto:

attribute

A

Creates a link to start up the user’s email program and addresses an email to a specified email address

HTML:
<a> Email someone</a>

17
Q

target

attribute

A

Open links in new window. Add target attribute to <a> tag with value _blank</a>