Latest Lists

Help with HTML tags and attributes?

I'm planning to make a sample .html document for a presentation. I need help with these tags... Can any of you give the tags for the following? - Ordered Lists - Unordered Lists - Definition Lists The type attribute values for... - Ordered Lists - Unordered Lists I've also been wondering about the use of the start attribute? Thanks guys.

Public Comments

  1. <html> <body> <h3>An Unordered List:</h3> <ul> <li>Food</li> <li>Drink</li> <li>Dog</li> </ul> </body> </html> <html> <body> <h3>An Ordered List:</h3> <ol> <li>Food</li> <li>Drink</li> <li>Dog</li> </ol> </body> </html> <dl> <dt>Food</dt> <dd>Hot Drink</dd> <dt>Dog</dt> <dd>Cold Drink</dd> </dl> hope that helps, no need to close the HTML OR BODY tags though which u probably already know!!! i just put them in there.
  2. all you need to know and more is available at w3schools.com UL disc square circle OL A a I i 1
  3. http://www.w3schools.com/HTML/html_lists.asp
  4. Ordered lists start with <ol>. Each item of the ordered list is a "list item" or <li> tag. Unordered lists start with <ul>. Each item of the unordered list is a "list item" or <li> tag. Definition lists start with <dl>. Each object has two items -- a term and a description. The term is surrounded by <dt> and the description by <dd>. <dl> <dt>Term 1</dt> <dd>Description 1</dd> <dt>Term 2</dt>... Chris Winn Eshilon Design Inc www.eshilon.com
  5. <ol> is an ordered list <ul> in unordered list <dl> is definition list attribute examples linked below
Powered by Yahoo! Answers