Home

Table of
Contents


Editors

Tags

Text
Formatting


Entities

Links

Frames

Tables

Lists

Forms

Images

Backgrounds

 


Unordered Lists

An unordered list is a list of items. The list items are marked with bullets (typically small black circles).
An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.
Inside a list item you can put paragraphs, line breaks, images, links, other lists, etc.

Example

Ordered Lists

An ordered list is also a list of items. The list items are marked with numbers.
An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.
Inside a list item you can put paragraphs, line breaks, images, links, other lists, etc.

Example

Definition Lists

A definition list is not a list of items. This is a list of terms and explanation of the terms.

A definition list starts with the <dl> tag. Each definition-list term starts with the <dt> tag. Each definition-list definition starts with the <dd> tag.

Inside a definition-list definition (the <dd> tag) you can put paragraphs, line breaks, images, links, other lists, etc.

List Tags

Tags Description
<ol> Defines an Ordered List
<ul> Defines an Unordered List
<li> Defines a List Items
<dl> Defines a Definition List
<dt> Defines a Definition Term
<dd> Defines a Definition Description

Different types of ordered lists
This example demonstrates different types of ordered lists.

Different types of unordered Lists
This example demonstrates different types of unordered lists.

Nested list
This example demonstrates how you can nest lists.

Definition list
This example demonstrates a definition list.