HTML Tags Flashcards

To learn HTML tags

1
Q

A heading - most important info

Gets increasingly less important

A

<h1> </h1>

<h2> </h2>

….. <h6> </h6>

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

Paragraph, sentence/ more - block of text

A

<p> </p>

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

Short text, less than a sentence

A

<span> </span>

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

Preserves white space - should NOT be used - this should be up to css

A

<pre> </pre>

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

Stress emphasis, italicized

Good for assisted devices for blind people/ more

A

<em> </em>

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

BOLD
Strong importance
Helps with assistrd devices for the blind/ other

A

<strong> </strong>

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

Ordered list

A

<ol>

<li> Item 1 </li>
<li> Item 2 </li>

</ol>

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

Unordered list

A

<ul> </ul>

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

Kimd of a catch-all for context division - there are better tags

Better Tags:

A

<div> </div>

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

Better tag than_____

Defines a section - can have other tags within
h1, p ….

A

<div>

| </div>

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

Specefies independent self-contained content

Should make sense on its own + possible to distribute independently from rest of the site

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

Indirectly relates to the rest of the content on the site

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

Constant at beginning/ top

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

Constant at beginning/ top

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

Constant at ending / bottom

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