List: Unordered Markers

A list-style type can be added to an unordered list, using the style attribute, to define the type of the marker:

List-style Type : Disc (this is the default)
<ul style="list-style:disc">
  • Coffee
  • Tea
  • Milk
List-style Type : Circle:
<ul style="list-style:circle">
  • Coffee
  • Tea
  • Milk
List-style Type : Square:
<ul style="list-style:square">
  • Coffee
  • Tea
  • Milk
List-style Type : None:
<ul style="list-style:none">
  • Coffee
  • Tea
  • Milk

Back button Table of Contents Next button