top of page

Our clients are our partners, that’s why we choose them carefully:

Html Lists

Listing your data

Ordered HTML Lists

An ordered list starts with the <ol> tag. Each list item starts with the <li> tag.

 

Ordered List:

  1. First item

  2. Second item

  3. Third item

  4. Fourth item

Ordered HTML Lists - The Type Attribute

A type attribute can be added to an ordered list, to define the type of the marker:

 The list items will be marked with bullets 

 

The list items will be marked with circles

 

The list items will be marked with squares

 

The list items will not be marked

Style
 Description

The list items will be numbered with numbers (default)

 

The list items will be numbered with uppercase letters

 

The list items will be numbered with lowercase letters

 

The list items will be numbered with uppercase roman numbers

 

The list items will be numbered with lowercase roman numbers

 

Unordered HTML Lists

An unordered list starts with the <ul> tag. Each list item starts with the <li> tag.

 

Unordered List:

  • Item

  • Item

  • Item

  • Item

Unordered HTML Lists - The Style Attribute

A attribute can be added to an , to define the style of the marker:

Style
 Description
bottom of page