I want to show a list of items with bullets in front of them. What I have currently is the following: I know, I know. This is so ... crappy sloppy. What can I do to clean this up? How can I do this in a more elegant way? (By the way, the following is where the test site is located: http://www.cre8iveonline.com/mechseal/index.htm )
You only have to do <ul> <li> YOUR TEXT INSIDE </li> <li> YOUR TEXT INSIDE </li> <li> YOUR TEXT INSIDE </li> </ul> Work it out yourself.
style it with CSS like this <style type="text/css"> ul { list-style-image:url('./images/arrow.jpg'); } </style> HTML: Good luck