Lesson 2 Flashcards

1
Q

href

A

Hypertext reference

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

<a></a>

A

Anchor tag

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

<p>
</p>

A

Paragraph tag

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

Heading Elements (tags)

A

<h1> Most important heading tag
<h2>
<h3>
<h4>
<h5>
<h6>
</h6></h5></h4></h3></h2></h1>

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

Other Text Elements

A

<p> Paragraph
<span> Short text
<pre> Preserves whitespace
</pre></span></p>

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

Assisted Device Elements

A

<em> Stress emphasis (italics)
<strong> Strong importance (bold)</strong></em>

These tags come in handy, not for style reasons (which should be handled with CSS), but for accessibility reasons (e.g. users with visual impairments)

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>
<li> Item 1 </li>
<li> Item 2 </li>
</ul>

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

Containing Elements

A

<div>
<section> Helps to group like content
<article> Helps contain things meant to be shared
<aside> Ancillary or extra content (e.g. ads)
<header> Groups content at the beginning of a document
<footer> Groups content at the end of a document
</footer></header></aside></article></section></div>

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

Deprecated Elements
(Not used very much anymore)

A

<blink>
<marquee>
<b> bold text
<i> italic text
</i></b></marquee></blink>

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