looking for html bullet list?
i would like to make a list with bullets in front
Public Comments
- <ul> <li>List Item 1</li> <li>List Item 2</li> <li>List Item 3</li> </ul> "ul" stands for "unordered list". You can also make numbered lists using the "ordered list" tag: <ol> <li>List Item 1</li> <li>List Item 2</li> <li>List Item 3</li> </ol>
- Look high on the mountain,under the fall.
- In addition to the numbered list above, you can also setup a bullet list that uses letters instead of numbers. <ol type="a"> <li>One is the loneliest number</li> <li>Two is the loneliest number since the number One.</li> <li>Wait..wasn't this an alphabetical list?</li> </ol>
- A nice little code is <ul type="disc"> <li>dog <li>cat <li>pig </ul> It gives you filled in circles that look like bullets. Check sources for a good amount of HTML list types.
Powered by Yahoo! Answers