001 Basic Tags Flashcards

1
Q

Define the type of document.

A

<!DOCTYPE html>

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

Open and close the HTML section, which describes the web page.

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

Open and close the visible page content.

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

Set character set.

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

Open and close heading one.

A

<h1> </h1>

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

Open and close heading two (subheading).

A

<h2> </h2>

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

Open and close paragraph.

A

<p> </p>

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

Ordered list.

A

<ol> </ol>

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

List item.

A

<li> </li>

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

Un-ordered list.

A

<ul> </ul>

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

Emphasis/italics.

A

<em> </em>

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

Bold.

A

<strong> </strong>

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

Definition list.

A

<dl> </dl>

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

Definition term (child of definition list).

A

<dt> </dt>

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

Definition details (child of definition list).

A

<dd> </dt>
</dd>

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

Image tag.

A

<img></img>

Self-close because no text goes between tags.

17
Q

Sourced image tag.

A

<img></img>

18
Q

Sourced image tag with non-loaded image text.

A

<img></img>

19
Q

Sourced web image tag.

A

<img></img>

DON’T DO THIS; IT MAKES OTHERS PAY FOR YOUR BANDWIDTH. THIS IS CALLED HOTLINKING AND IS A BIG NO-NO.