--- title: How to Use Lists --- ## How to Use Lists Lists are used to specify a set of consecutive items or related information in well formed and semantic way, such as a list of ingredients or a list of procedural steps. HTML markup has three different types of lists - **ordered**, **unordored** and **description** lists. ### Ordered Lists An ordered list is used to group a set of related items, in a specific order. This list is created with `
    ` tag. Each list item is surrounded with `
  1. ` tag. ##### Code ```html
    1. Mix ingredients
    2. Bake in oven for an hour
    3. Allow to stand for ten minutes
    ``` ##### Example
    1. Mix ingredients
    2. Bake in oven for an hour
    3. Allow to stand for ten minutes
    ### Unordered Lists An unordered list is used to group a set of related items, in no particular order. This list is created with `