Using Different Tags
Using Different Tags
V.VIDYASHANKAR
HTML Unordered or Bulleted
List
In an HTML unordered list, the list items have no specific
order or sequence.
An unordered list is also called a Bulleted List, as the items
are marked with bullets.
It begins with the <u1> tag and closes with a </u1> tag
The list items begin with the <li> tag and end with </li>
tag
Code Example – Unordered List
HTML Ordered or Numbered
List
In HTML, all the list items in an ordered list are marked
with numbers by default instead of bullets
An HTML ordered list starts with the < ol > tag and
ends with the </ ol > tag
The list items start with the < li > tag and end with the
< / li > tag
Code Example – Ordered List
Different types of Ordered Lists
in HTML
Instead of numbers, one can mark the list items with
the alphabet, A,B, C or a,b,c or Roman numerals i, ii, or
iii
One can do this by using the < ol > tag
One can have variations like upper case and lower case
Code Example – Different Types
of Ordering
Code Example – Different types
of Ordering 2
Code Example – Different Types
of Ordering 3
HTML Description List or Definition List