Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Bullets Without a UL Tag (See related posts)

There are times when you want to put a bullet on an HTML page but you do not want to use a UL tag... this is how you do it:

   1  
   2  <html>
   3  <head>
   4  </head>
   5  <body>
   6  <span style="font-size: 20px;">&bull;a</span><br />
   7  <span style="font-size: 25px;">&bull;b</span><br />
   8  <span style="font-size: 30px;">&bull;c</span><br />
   9  <span style="font-size: 35px;">&bull;d</span><br />
  10  </body>
  11  </html>


For more tips on HTML, CSS, and most Web technologies visit me at ERT

Comments on this post

Gazzer posts on May 09, 2007 at 03:03
I'm intrigued - why would you want to do that? Why create something semantically confusing when the UL or OL tags will do the job perfectly?

You need to create an account or log in to post comments to this site.


Click here to browse all 5556 code snippets

Related Posts