Already a member?
Sign in
Lists in HTML
Manipulation of text is very important in HTML. The first lesson I will teach you is about creating lists in HTML, a very simple skill. There are two types of "tags" in lists, <ul> and <ol>. The tag <ul> stands for "unordered list" and creates a list with bullets ,while the tag <ol>stands for "ordered list'" and creates lists that are numbered. None the less, all list items are listed by the tag <li>, which is an abridged version of the word "list". Also, with the "tag" <ul>, you can modify the shape or letter of the bullets.
<ol> <li>fungi </li> <li> bacteria</li> <li> arthopods</li> </ol> | Unordered Lists (bullets, etc) <ul type="circle"> <li>fungi </li> <li> bacteria</li> <li> arthopods</li> </ul> |
Latest page update: made by realshaman
, Nov 14 2007, 8:04 PM EST
(about this update
About This Update
Edited by realshaman
8 words added
4 words deleted
view changes
- complete history)
Edited by realshaman
8 words added
4 words deleted
view changes
- complete history)
Keyword tags: None
More Info: links to this page