List of basic HTML

List three

  • Ordered list
  • Unordered list
  • Custom List

A list of commonly used label

label description
ol Defines an ordered list
the Defines an unordered list
at the Defined list items
dl Define a custom list
dt Custom list items
dd Description define a custom list

The sample code

Ordered list

<!DOCTYPE html>
<html>
<body>
<h4>Numbered list:</h4>
<ol> 
<li>Apples</li>
<li>Bananas</li> 
<li>Lemons</li> 
<li>Oranges</li>
</ol>  
<h4>Letters list:</h4><ol type="A"> <li>Apples</li> 
<li>Bananas</li> 
<li>Lemons</li> 
<li>Oranges</li>
</ol>  
<h4>Lowercase letters list:</h4>
<ol type="a"> 
<li>Apples</li> 
<li>Bananas</li> 
<li>Lemons</li> 
<li>Oranges</li>
</ol>  
<h4>Roman numbers list:</h4>
<ol type="I"> 
<li>Apples</li> 
<li>Bananas</li> 
<li>Lemons</li> 
<li>Oranges</li>
</ol> 
</body>
</html>

Custom List

<!DOCTYPE html>
<html>
<body>
<h4>A Definition List:</h4>
<dl>  
<dt>Coffee</dt>  
<dd>- black hot drink</dd>  
<dt>Milk</dt>  
<dd>- white cold drink</dd>
</dl>
</body>
</html>
Published 25 original articles · won praise 19 · views 678

Guess you like

Origin blog.csdn.net/devin_xin/article/details/105005234