How to use dl(dt,dd), ul(li), ol(li) in HTML

How to use dl(dt,dd), ul(li), ol(li) in HTML

HTML <dl> Tag

#Definition and Usage

The <dl> tag defines a definition list.
The <dl> tag is used to combine <dt> (which defines an item in a list) and <dd> (which describes an item in a list).

#Example


Copy code
The code is as follows:

<dl>
<dt>Computer</dt>
<dd>An instrument used to calculate... </dd>
<dt>Display</dt>
<dd>A device for displaying information visually... </dd>
</dl>

HTML <ul> Tag

#Definition and Usage

The <ul> tag defines an unordered list.

#Example

Unordered HTML list:


Copy code
The code is as follows:

<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>

HTML <ol> Tag

#Definition and Usage

The <ol> tag defines an ordered list.

#Example

Ordered HTML list:


Copy code
The code is as follows:

<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>

ul can be combined with ol to define menus and submenus


Copy code
The code is as follows:

<ul>
<li><a href="#">Content Filtering</a><li>
<li><a href="#">Word Filter</a></li>
<li class="s">
<div class="lsub">
<div>Forum</div>
<ol>
<li><a href="#">Forum Topic Management</a></li>
<li><a href="#">Batch delete posts in the forum</a></li>
</ol>
</div>
</li>
<ul>

<<:  How to get the contents of .txt file through FileReader in JS

>>:  Detailed process of SpringBoot integrating Docker

Recommend

Do you know how to use vue-cropper to crop pictures in vue?

Table of contents 1. Installation: 2. Use: 3. Bui...

vue-table implements adding and deleting

This article example shares the specific code for...

An example of how to implement an adaptive square using CSS

The traditional method is to write a square in a ...

Solution to Linux CentOS 6.5 ifconfig cannot query IP

Recently, some friends said that after installing...

【HTML element】How to embed images

The img element allows us to embed images in HTML...

Six methods for nginx optimization

1. Optimize Nginx concurrency [root@proxy ~]# ab ...

How to change the encoding of MySQL database to utf8mb4

The utf8mb4 encoding is a superset of the utf8 en...

How to install Docker on Windows 10 Home Edition

I recently used Docker to upgrade a project. I ha...

JS implements multiple tab switching carousel

Carousel animation can improve the appearance and...

Vue implements image drag and drop function

This article example shares the specific code of ...

Do you know how many connections a Linux server can handle?

Preface First, let's see how to identify a TC...

How to monitor the running status of docker container shell script

Scenario The company project is deployed in Docke...

Vue routing returns the operation method of restoring page status

Route parameters, route navigation guards: retain...

Summary of solutions for MySQL not supporting group by

I downloaded and installed the latest version of ...