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>
2
Q
What are the tags for Italics?
A
<i> or <em></em></i>
3
Q
What are the tags for bold?
A
<b> or <strong></strong></b>
4
Q
How to do you use an image as an anchor?
A
<a> <img></img> </a>
5
Q
How do you create an unnumbered list?
A
<ul>
<li> Item 1</li>
</ul>
6
Q
Create an ordered list (numbered)
A
<ol>
<li> item 1 </li>
</ol>