HTML Chapter 2: Text Flashcards

(18 cards)

1
Q

How many heading does HTML have

A

HTML has six levels of heading

<h1></h1>

.
.
.

<h6></h6>

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

How to create a paragraph in HTML

A

<p></p>

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

How to make characters appear bolded

A

<b></b>

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

Italics

A

<i></i>

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

Supersciprt

A

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

Subscript

A

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

When the browser comes across two or more spaces next to each
other, it only displays ____ space.
Similarly if it comes across a linebreak, it treats that as a singlespace too

A

one

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

Line break

A

<br></br>

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

Horizontial line

A

<hr></hr>

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

emphasis (italics)

A

<em></em>

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

element is
used for longer quotes that take
up an entire paragraph. Note
how the <p> element is still
used inside the <blockquote>
element

A

<blockquote>
</blockquote>

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

Shorter quotes that sit within a paragraph

A

<q></q>

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

Abbreviations

A

<p><abbr>Prof</abbr> Stephen
Hawking is a theoretical physicist and
cosmologist.</p>

<p><acronym>NASA</acronym> do some crazy
space stuff.</p>

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

Citation

A

<cite></cite>

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

Definition

A

<dfn></dfn>

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

Adress

A

<address>
<p><a>
homer@example.org</a></p>
<p>742 Evergreen Terrace, Springfield.</p>
</address>

17
Q

Show content has been inserted (underlined)

18
Q

Show content has been deleted (crossed out)