HyperTextMarkupLanguage

HTML basics

| Home | HTML basics - Agenda | Next |

Basic tags

UL - Unordered list

Appearance: <UL> </UL>
Attributes: TYPE=disc|square|circle, COMPACT
An Unordered List is a list of items, each one preceded by a bullet and having the following format:

<UL TYPE=SQUARE >
  <LI>John</LI>
  <LI>Paul</LI>
  <LI>George</LI>
  <LI>Ringo</LI>
</UL>


would produce

Almost any item can be placed into a list: line breaks, entire paragraphs, images, or even other lists


| Home | HTML basics - Agenda | Next |

T07D029