Free Web space and hosting from freehomepage.com
Search the Web


HOME
BASIC TUTORIAL
What is Html?
Sample Web Page
Basic Tags
Character Entities
Html Links
Frames
Tables
Lists
Forms
Images
Backgrounds
APPENDIX
Html Tag List

Lists

There are three types of lists in html: ordered, unordered, and definition. An ordered list is a list of items that are numbered. Use the <ol> tag to create an ordered list. Then use the <li> tag to create each item.
<ol>
<li>Computer</li>
<li>Keyboard</li>
</ol>

An
unordered list is a list of items that are marked by bullets. Use the <ul> tag to create an unordered list.
<ul>
<li>Computer</li>
<li>Keyboard</li>
</ul>

A
definition list is not a list of items. Instead, it is a list of terms and their definitions. A definition list starts with the <dl> tag. Each definition starts with a <dt> tag, and each definition starts with a <dd> tag.
<dl>
<dt>Computer</dt>
<dd>Machine</dd>
<dt>Keyboard</dt>
<dd>Input Device</dd>
</dl>

Click
here to view an example of all three list types.
To learn about forms and input, click “next”.

Much of what I learned to create this tutorial I found on www.w3schools.com.
Back to Top
Lewisville Middle School-2003