Atomic55 Web Design A to Z Glossary

Back to Glossary

Lists: definition, ordered, unordered
In a webpage we categorized the text, in the form of bulleted, numbered, or unnumbered, generally text does not contain colors or special effects.

For pattern:
Ordered list
<ol> <li>First list</li> <li>Second list</li> <li>Third list</li> </ol>

  1. First list
  2. Second list
  3. Third list

 

Unordered list
<ul> <li>Item</li> <li>Item</li> <li>Item</li> </ul>

  • Item
  • Item
  • Item