Basic HTML Flashcards

1
Q

What is a phrase element?

A

Indicates the context and meaning of text between container tags. Can apply to a string of txt or a single character

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

<b></b>

A

Bold

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

<cite></cite>

A

Citations. Displayed in italics.

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

<dfn></dfn>

A

Definition of a word or term. Displayed in italics

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

<em></em>

A

Emphasize. In italics

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

<i></i>

A

Italicized

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

<small></small>

A

Small txt for legal disclaimers & notices. The “fine print”

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

<strong></strong>

A

Strong. Displayed in bold

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

A

Both for super & subscripts

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

To use symbols like “ “, >, <, special characters called what are used?

A

Entity characters

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

<ol>
</ol>

A

Ordered list

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

<li>
</li>

A

Listed numbered items

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

To create an ordered list organized by uppercase letters, use what?

A

<ol type=“A”>

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

<ul>
</ul>

A

Unordered list

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

<dl>
</dl>

A

Displays a description list

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

<dt>
</dt>

A

Contains a term

17
Q

<dd>
</dd>

A

Describes each term

18
Q

<a> tag is the anchor element for what?</a>

A

Hyperlinks

19
Q

Href indicates what about a link?

A

The link’s destination

20
Q

What are the two parts to a link?

A

Destination and a lable

21
Q

When linking to pages on your site, use what kind of hyperlink?

A

Relative. The href will contain only the file name or file name and folder of the web page you want to display.

22
Q

Absolute links refers to?

A

The absolute location of a resource on the web. Used when linking to other resources on other websites. The href value include HTTPS protocol & domain name

23
Q

<img></img>

A

Image element. Configures graphics on a web page. Has 2 attributes: src & alt

24
Q

<figure>
</figure>

A

Can be used for images or any content that can be moved to a different location and still make sense

25
Q

What are HTML structural elements?

A

Define different parts of a webpage

26
Q

<div>
</div>

A

Configures a generic structural area or “division” on a webpage as a block display w/ empty space above & below