Latest Lists

How do I put a list into an HTML document?

What are the codes to put lists in HTML documents? I havn't used HTML in a while but i'm trying to write a website. All that I remember is there are several types of lists.

Public Comments

  1. This is the code for a list: <ul> <li> </li> </ul> You don't need to know it if you use a HTML editor. NVU is the best free alternative to Dreamweaver. NVU - Finally! A complete Web Authoring System for Linux Desktop, Microsoft Windows and Macintosh users to rival programs like FrontPage and Dreamweaver. Nvu (pronounced N-view, for a "new view") makes managing a web site a snap.
  2. Bulleted list <ul> <li>One</li> <li>two</li> <li>three</li> </ul> Numbered list <ol> <li>One</li> <li>two</li> <li>Three</li> </ol>
  3. it depends on if you want an ordered list (numbered) or unordered list (bullets) ... the code for an ordered list would look like <ol> <li>Item 1</li> <li>Item 2</li> </ol> unordered list would just changed the ol to ul
  4. for ordered list, put this code: <ol> </ol> for the unordered list, put this code: <ul> </ul> if you used the <ol>, the output would be like this: 1.:) 2.:( 3.:P if you used the <ul>, the output would be this: -:) -:( -:P hope i helped:)
Powered by Yahoo! Answers