Add a list using ul

ul-li is no before and after the order list information.

grammar:

<ul>
  <li>信息</li>
  <li>信息</li>
   ......
</ul>

For example:

< Ul > 
  < li > wonderful juvenile </ li > 
  < li > beautiful popped </ li > 
  < li > touch the hearts of melody </ li > 
</ ul >

Ul-li default style is displayed in a web page is typically: each dot former comes with a li, as shown below:

Example:

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title> p标签</title>
</head>
<body>
<ul><li>我的第一个列表信息</li></ul>
</body>
</html>

Browser output:

 

  • My first list information

Guess you like

Origin www.cnblogs.com/iBoundary/p/11414476.html