2 - HTML Continued Flashcards

1
Q

How do you create a link to section within the text?

A

Create link: <a> Go To Section 2 </a> <br></br>

Clicking the above will take you to the anchored link:

<a> Welcome to Section 2 </a>

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

What are the tags for Italics?

A

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

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

What are the tags for bold?

A

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

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

How to do you use an image as an anchor?

A

<a> <img></img> </a>

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

How do you create an unnumbered list?

A

<ul>
<li> Item 1</li>
</ul>

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

Create an ordered list (numbered)

A

<ol>
<li> item 1 </li>
</ol>

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