Writing HTML | About | FAQ | Alumni | Tags | Lessons |

Summary of HTML Tags Used in the Tutorial

Web Page Structure | Text Formatting | Text Breaks & Divisions | Lists | Graphics | Hyper-Links |


Lists
<ul>       <ol>
  <li>       <li>
  <li>       <li>
</ul>      </ol>
Item Lists
Unordered Lists <ul> for bulleted items, ordered lists <ol> for numbered items
Lesson 6
<ul type=xxxx>

<li type=xxxx>
Bullets for Unordered Lists
Over-ride the default bullets:
  • type=circle
  • type=square
  • type=disc
Lesson 22
<ol type=X>

<li type=X>
Number Styles for Ordered Lists
Use different characters for lists:
  • type=1 (1,2,3...)
  • type=A (A,B,C,...)
  • type=a (a,b,c,...)
  • type=I (I,II,III,...)
  • type=i (i,ii,iii,...)
Lesson 22
<ol start=i>

<li value=j>
Number Values for Ordered Lists
start will begin a list with any positive number. value will renumber the list from the item and following with the new value.
Lesson 22
<dl>
  <dt>
  <dd>
  <dt>
  <dd>
</dl>
Descriptive Lists
Lists with text items <dt> and indented definitions <dd>
Lesson 11

Writing HTML Summary of HTML Tags: Lists

©1995, 1996 Maricopa Center for Learning & Instruction (MCLI)
Maricopa County Community College District, Arizona

The Internet Connection at MCLI is Alan Levine --}
Comments to levine@maricopa.edu

URL: http://www.mcli.dist.maricopa.edu/tut/tags/tag4.html