T E C h O C E A N H U B

Lists (ordered and unordered) in HTML

In HTML, you can create both ordered and unordered lists using the <ul> and <ol> elements, respectively. Here’s how you can create each type of list:

Unordered List: An unordered list is a list of items that do not have a specific numerical or sequential order. By default, unordered lists are displayed with bullet points.

<ul>
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
</ul>

The <ul> element is used to create an unordered list, and each list item is defined using the <li> element. Place the content of each item between the opening and closing <li> tags.

Ordered List: An ordered list is a list of items that have a specific numerical or sequential order. By default, ordered lists are displayed with numbers.

<ol>
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
</ol>

Similar to unordered lists, you can use the <ol> element to create an ordered list. Each list item is defined with the <li> element, and the content of each item is placed between the opening and closing <li> tags.

Nested Lists: You can also nest lists within each other to create hierarchical structures.

<ul>
  <li>Item 1</li>
  <li>Item 2
    <ul>
      <li>Subitem 1</li>
      <li>Subitem 2</li>
    </ul>
  </li>
  <li>Item 3</li>
</ul>

In the example above, a nested unordered list is created by placing another <ul> element within an <li> element. Similarly, you can nest ordered lists by using the <ol> element.

These examples demonstrate how to create basic ordered and unordered lists in HTML. You can further customize the appearance of the lists using CSS or by applying predefined styles from CSS frameworks.

Copyright ©TechOceanhub All Rights Reserved.