Examples of using HTML list tags dl, ul, ol

Examples of using HTML list tags dl, ul, ol

Copy code
The code is as follows:

<!--
List tag: <dl>: hierarchical list subtag: <dt>: upper list item
<dd>: lower level list item
------------
Unordered list tag: <ul>
Subtag: <li>
------------
Unordered list tag: <ol>
Subtag: <li>
--!>
<html>
<head>
<title> List tag practice</title>
</head>
<body>
<dl>
<dt>label</dt>
<dd>1</dd>
<dd>2</dd>
<dd>3</dd>
</dl>
<hr>
<ul type="disc">
<li>Apple</li>
<li>Banana</li>
<li>Orange</li>
</ul>
<hr>
<ol type="1">
<li>Apple</li>
<li>Banana</li>
<li>Orange</li>
</ol>
<hr><!--Practice nesting of tags-->
<dl>
<dt>Four Heavenly Kings</dt>
<dd>
<ol type="1">
<li>Jacky Cheung</li>
<li>Andy Lau</li>
<li>Aaron Kwok</li>
<li>Dawn</li>
</ol>
</dd>
</dl>
</body>
</html>

<<:  JS Easy to understand Function and Constructor

>>:  Let's talk in detail about the direction of slow SQL optimization in MySQL

Recommend

Distributed monitoring system Zabbix uses SNMP and JMX channels to collect data

In the previous article, we learned about the pas...

How to Easily Remove Source Installed Packages in Linux

Step 1: Install Stow In this example, we are usin...

Specific usage instructions for mysql-joins

Table of contents Join syntax: 1. InnerJOIN: (Inn...

A brief discussion on docker-compose network settings

Networks usage tutorial Official website docker-c...

How to deploy gitlab using Docker-compose

Docker-compose deploys gitlab 1. Install Docker I...

Sample code for implementing history in vuex

I have recently been developing a visual operatio...

The perfect solution for MySql version problem sql_mode=only_full_group_by

1. Check sql_mode select @@sql_mode The queried v...

Interaction in web design: A brief discussion on paging issues

Function: Jump to the previous page or the next p...

CSS3 realizes the animation effect of lotus blooming

Let’s look at the effect first: This effect looks...

js method to delete a field in an object

This article mainly introduces the implementation...

How to avoid data loop conflicts when MySQL is configured with dual masters

I wonder if you have ever thought about this ques...

HTML head tag meta to achieve refresh redirection

Copy code The code is as follows: <html> &l...

Example of using CSS3 to customize the style of input multiple-select box

Principle: First hide the input element, then use...