Making a List with HTML

List is a record number of names or terms (words, names of people, goods, etc.) are arranged in an array from top to bottom or comma separated.(By Wikipedia)

So, we will learn how to create a list using HTML. Two types of lists currently we will learn how to make :

1. Creat list with number
Below is a list of the names of birds.
pigeon
hawk
cassowary
frigate
crow
paradise


So we will make a list of a list of the names of the birds using the number lis. This is the html code for a list of numbers :

 


List Numbering

Below is a list of the names of birds.
  1. pigeon
  2. hawk
  3. cassowary
  4. frigate
  5. crow
  6. paradise

Look image below :
list numbering

2. Make list without numbering.



List Numbering

Below is a list of the names of birds.
  • pigeon
  • hawk
  • cassowary
  • frigate
  • crow
  • paradise

Below is result of above code :
list numbering
 Thanks you.
Previous
Next Post »