Key Terms Flashcards

1
Q
A

HTML

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

Browser

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

Code Editor

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

Root Folder

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

Doctype

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

Head

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

Body

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

Telling the browser the purpose of each element on the page

Markups ONLY put in the <body> – no styling

A

Semantic

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

Attribute

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

Charset

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

Surround heading text

A

<h1> through <h6>
</h6></h1>

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

Surround an ordinary paragraph

A

<p>
</p>

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

Mark important words or phrases amid a block of text

A

<strong> or <b></b></strong>

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

Emphasize important words or phrases amid a block of text

A

<em> or <i></i></em>

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

Surround an entire ordered (numbered) list.

A

<ol>
</ol>

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

Surround an entire unordered (bulleted) list.

A

<ul>
</ul>

17
Q

Surround each list item

A

<li>
</li>

18
Q

Self closing tag that causes an image from a nearby folder to appear on the page

A

<img></img>

19
Q

Put this container around the masthead of the page: site title and possibly main navigation.

A

<header>
</header>

20
Q

Put this around the main content area of the page (usually the large area between header and footer). Only use one per page.

A

<main>
</main>

21
Q

Put this around a complete, stand-alone chunk of content that has its own header.

A

<article>
</article>

22
Q

Put this around a chunk of content that has a topic that goes off on a tangent, such as a sidebar.

A

<aside>
</aside>

23
Q

Put this around the “fine print” information at the bottom of the page: might include such things as copyrights, contact information, and/or lesser used navigation.

A

<footer>
</footer>