Now the next is HTML Lists when you want to generate the lists of your items these lists can be ordered in the form of numbers or letters and in an unordered form also so the ordered list is
<ol>ordered list</ol>
<li>milk</li>
li means list items
<ul></ul>unordered list
<li>milk</li>
code is as:
<ul>
<li>coffee</li>
<li>milk</li>
</ul>
<ol>
<li>coffee</li>
<li>milk</li>
</ol>
Monday, October 11, 2010
HTML Lists:
9:58 AM
GCbioinfo
0 comments:
Post a Comment