<ul> for unordered lists

The ul element denotes unordered lists. Items in the ul element are marked using the li element.

The ul element contains a number of li items. Each list item is displayed with a bullet.

 
<!DOCTYPE HTML> 
<html> 
<head> 
<title>Example</title> 
</head> 
<body> 
    I like: 
    <ul>
            <li>HTML</li> 
            <li>CSS</li> 
            <li>Javascript</li> 
            <li>SQL</li> 
            <li>Java</li> 
            <li>C#</li> 
    </ul> 

</body> 
</html>
  
Click to view this demo.
Home 
  HTML CSS Book 
    HTML  

ul:
  1. <ul> for unordered lists
  2. A list that contains two nested lists
Related: