HTML Lists Tutorials | Learn HTML Lists

HTML Tutorials | Bookmark | HTML Tutorial Program by Email | Contact | Link Us | Links | Sitemap |
HTML Lessons
Main
:: Home Page
:: Tools
:: Glossary
:: First Steps

Tutorials
:: Basic HTML

Elements
:: Text
:: Dividers
:: Links
:: Graphics
:: Lists
:: Tables
:: Frames

Tips
:: Graphics
:: Frames/Tables

Extra
:: Links
:: Web Tools
:: Web Hosting
:: Domains

An effective way to organize items is to do so with the help of LISTS.

Bulleted List
<ul>
<li>apples
<li>oranges
<li>bananas
</ul>
  • apples
  • oranges
  • bananas
DESCRIPTION: <UL> is the opening tag for the list. <LI> specifies an element. You can have as many elements as you want. And finally </UL> is the closing tag.


Numbered List
<ol>
<li>apples
<li>oranges
<li>bananas
</ol>
  1. apples
  2. oranges
  3. bananas
DESCRIPTION: Same as bulleted lists, but replace the <UL> with an <OL>.


It is also possible to create nested lists (i.e. a list inside a list).

Nested List
<ul>
<li>apples
   <ul>
   <li>red
   <li>green
   </ul>
<li>oranges
   <ul>
   <li>sweet
   <li>sour
   </ul>
</ul>
  • apples
    • red
    • green
  • oranges
    • sweet
    • sour
DESCRIPTION: Same tags, just put them inside another list.


Link To Us
Link To Us
TOP LINKS
Free Javascripts
Computer Software
Free Clipart
Freebies
Free Backgrounds
Web Hosting Directory

© 2012 AAAHtml.com - Privacy Policy
Hosted by HostDeparment
HTML Lists