HTML Flashcards

1
Q

What is HTML used for?

A

Content

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

What tag is used for a heading?

A

<h1..6></h1..6>

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

What tag is used for paragraphs or large blocks of text?

A

<p>...</p>

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

What tag is used for short text?

A

<span>…</span>

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

What tag is used to stress emphasis?

A

<em>…</em>

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

What tag is used to stress importance?

A

<strong>…</strong>

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

How would you tag an ordered list?

A

<ol>
<li> Item1 </li>
<li> Item 2 </li>
</ol>

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

How would you tag an UNordered list

A

<ul>
<li> Item1 </li>
<li> Item 2 </li>
</ul>

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

What tag would you use for a division of text

A

<div>...</div>

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

What is nav used for?

A

Navigation, usually in the form of an unordered list

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

How would you link another site?

A

href=”#”

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

How can you create a line of code that someone can type in on the web page?

A

<form>
</form>

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