Latest Lists

What is the HTML code for bullet point list columns?

I need the simplest of all HTML codes for this. Need it to look something like this : (Title of 'Bullet Item' List) * (Bullet Item) * (Bullet Item) * (Bullet Item) * (Bullet Item) * (Bullet Item) * (Bullet Item) Thanks in advance. My skills and memory are more than just a little wee bit rusty.

Public Comments

  1. I don't really know if this will work, I just hand-coded this. also, it might look differently in some browsers - I'm using Firefox btw. <style> .container { width: 220px; border: 1px solid #c0c0c0; } ul { margin: 0; padding: 0; } li { display: inline; border: 1px solid #c0c0c0; padding-left: 20px; } </style> <div class='container'> <h3>(Title of 'Bullet Item' List)</h3> <ul> <li>(Bullet Item)</li> <li>(Bullet Item)</li> <li>(Bullet Item)</li> <li>(Bullet Item)</li> <li>(Bullet Item)</li> <li>(Bullet Item)</li> </ul> </div>
  2. Here you go <h2>Title of 'Bullet Item' List</h2> <ul> <li> Bullet Item </li> <li> Bullet Item </li> <li> Bullet Item </li> </ul> - <UL> means Unordered List. <LI> stands for LIst element. Use <ol> instead of <ul> if you want a numbered list. - If you just want to make a bullet in html, you can use & bull ; with no spaces - If you want to make sure the list aligns to the left correctly in every browser, add this to the page: <style> ul { margin-left: 0; padding-left: 0; list-style-position: inside; } </style>
  3. <html> <body> <h4>Title</h4> <table> <tr> <td> <ul> <li>Item1</li> <li>Item2</li> <li>Item3</li> </ul> </td> <td> <ul> <li>Item4</li> <li>Item5</li> <li>Item6</li> </ul> </td> </tr> </table> </body> </html>
Powered by Yahoo! Answers