LISTS / MENUS
While using HTML you will find there is a code for everything. Including Lists/Menus. This is just an easy way to configure and point out certain pieces of information, or to make a detailed list. To create a bulleted list you need to add a <ul> and a </ul> tag at the beginning and the end of the list.Numbered lists have <ol> tags instead of <ul> tags.To separate single list items use <li> and </li> tags.There are special settings that you can use to customize the lists on your page.
EXAMPLE
CODE
END RESULT
<ul>
<li>LIST ITEM 1</li>
<li>LIST ITEM 2</li>
<li>LIST ITEM 3</li>
<ul>
  • LIST ITEM 1
  • LIST ITEM 2
  • LIST ITEM 3
BULLET OPTIONS

There are different variations of bullet options. (The bullet is the solid black circle outside of the list item) The following are the 3 most used.

The 3 most used bullet options are:

  • disc
  • circle
  • square
EXAMPLE
HTML CODE
EXAMPLE (S)
<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">
<li>text</li>
<li>text</li>
<li>text</li>
</ul>
  • text
  • text
  • text
<ul type="circle">
<li>text</li>
<li>text</li>
<li>text</li>
</ul>
  • text
  • text
  • text
<ul type="square">
<li>text</li>
<li>text</li>
<li>text</li>
</ul>
  • text
  • text
  • text
OTHER BULLET OPTIONS
There are numerous variations. In the next paragraph you will find the names, the codes, and the examples of the variations.
EXAMPLE (S)
NAME
CODE
EXAMPLE
PLAIN NUMBERS <ol>
<li>text</li>
<li>text</li>
<li>text</li>
</ol>
  1. text
  2. text
  3. text
CAPITAL LETTERS <ol type="A">
<li>text</li>
<li>text</li>
<li>text</li>
</ol>
  1. text
  2. text
  3. text
LOWER CASE LETTERS <ol type="a">
<li>text</li>
<li>text</li>
<li>text</li>
</ol>
  1. text
  2. text
  3. text
CAPITAL ROMAN NUMERAL <ol type="I">
<li>text</li>
<li>text</li>
<li>text</li>
</ol>
  1. text
  2. text
  3. text
LOWER CASE ROMAN NUMERAL <ol type="i">
<li>text</li>
<li>text</li>
<li>text</li>
</ol>
  1. text
  2. text
  3. text
MAIN
Hosted by www.Geocities.ws