Answer:
Sure is. What is a typewriter?
Lists
HTML enables you to make an unordered list of items, such as this:
- A list starts with the tag
<ul> - A list ends with the tag
</ul> ulstands for "Unordered List"- Each List Item starts with
<li>and ends with</li> - Each List Item will be started on a new line and will be preceded with a "bullet"
- Sometimes such a list is called a bulleted list.
- If you want a Ordered List (lines start with numbers instead of bullets)
use
<ol>and</ol>
Here is a Web page with a list for you to edit and play with:
QUESTION 2:
Change the list to an ordered list by changes the
<ul>
and
</ul>
tags to
<ol>
and
</ol>.