Home >Web Front-end >HTML Tutorial >How to implement a list in html5

How to implement a list in html5

青灯夜游
青灯夜游Original
2021-09-13 15:12:365551browse

html5 Methods to implement lists: 1. Use the ol tag to create an ordered list, and use li in the list to represent the list items; 2. Use the ul tag to create an unordered list, and use li in the list to represent the list. Item; 3. Use dl to represent the list item, use dt to represent the defined content, and use dd to explain the content.

How to implement a list in html5

The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.

You can also create lists in html. There are three types of html lists:

1. Ordered list: Use the ol tag to create an ordered list, use li to represent list items.

2. Unordered list: Use ul tag to create an unordered list, and use li to represent list items.

3. Customized list: Use dl to represent the list items, use dt to represent the defined content, and use dd to explain the content.

Example:


        
  • 结构
  •     
  • 表现
  •     
  • 行为
      
        
  1. 结构
  2.     
  3. 表现
  4.     
  5. 行为
 
    
结构
    
结构表示网页的结构,用来规定网页中哪里是标题,哪里是段落

Rendering:

How to implement a list in html5

Lists can also be nested:

<ul>
    <li>aaa</li>
    <ul>
        <li>bbbb</li>
        <ul>
            <li>cc</li>
        </ul>
    </ul>
</ul>

How to implement a list in html5

Recommended tutorial: "html video tutorial"

The above is the detailed content of How to implement a list in html5. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn