DEV Community

Narmatha
Narmatha

Posted on

HTML LIST

*HTML List
*

An HTML list is used to display a group of related items in an organized and easy-to-read format on a web page. Lists help present information clearly using numbers, bullets, or descriptions.

Types of HTML Lists
__
Ordered List (

    ): Displays items in a numbered or lettered order. Used when the order of items is important.

    Unordered List (

      ): Displays items with bullet points. Used when the order of items is not important.

      Description List (

      ):
      Displays terms and their descriptions.
      Uses
      for the term and
      for the description.

      *SIMPLE EXAMPLES FOR OL,UL,DL
      *

      Example

      1. HTML
      2. CSS
      • Apple
      • Banana
      HTML
      HyperText Markup Language

Top comments (0)