Programmers prefer Html lists concept to provide different form of bullets for the text contents.
To list down the Html content or text content on web browser,programmers prefer Html Lists.
Html Lists are two types they are,
Ordered list : It is represented by ' ol ' tag.And it represents the list by providing the numbers.
Unordered list: It is represented by ' ul ' tag.And it represents the list by providing the 'solid sphere' or 'disc'.
The text which is associated along with any form of bullets is technically referred as 'List Item' and it is represented by using ' li ' tag.
As a programmer we can change bullets or remove them by using CSS properties called as list-style-type for it we can pass different values as mentioned below.
For ordered list, programmer can pass values as decimal, upper-alpha, lower-alpha, upper-roman, lower-roman values.
For unordered list, programmer can pass values as disc, circle, square.