HTML Lists :
BULLETED LISTS








This page shows how to make different kinds of bulleted lists.

You have the following bullet options:
  • disc

  • circle

  • square

Look at these examples to see the detailed syntax.

HTML-CODEEXPLANATION / EXAMPLE
<ul>
<li>text</li>
<li>text</li>
<li>text</li>
</ul>
Makes a bulleted list using the default bullet type:
  • text
  • text
  • text

<ul type="disc">
Starts a bulleted list using discs as bullets:
  • This is one line
  • This is another line
  • And this is the final line

<ul type="circle">
Starts a bulleted list using circles as bullets:
  • This is one line
  • This is another line
  • And this is the final line

<ul type="square">
Starts a bulleted list using squares as bullets:
  • This is one line
  • This is another line
  • And this is the final line



On the next page you can learn how to create and customize numbered lists....


 << PREVIOUS
READ MORE >>  
















DEVELOPER TIP!





     "Better Than Books - As Easy As It Gets!"