Version User Scope of changes
Nov 14 2007, 8:04 PM EST (current) realshaman 8 words added, 4 words deleted
Nov 14 2007, 8:01 PM EST realshaman 2 words added, 1 word deleted

Changes

Key:  Additions   Deletions
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.
ExampleOrdered ILists (1,2,3 etc)
<ol>
<li>fungi </li>
<li> bacteria</li>
<li> arthopods</li>
</ol>
ExampleUnordered Lists (bullets, IIetc)
<ul type="circle">
<li>fungi </li>
<li> bacteria</li>
<li> arthopods</li>
</ul>





Top Contributors