Application nesting of HTML ul unordered tables

Application nesting of HTML ul unordered tables
Application nesting of unordered lists

Copy code
The code is as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Unordered table application</title>
</head>
<body>
<h1>
<strong>
Chinese provinces and cities
</strong>
</h1>
<hr />
<ul>
<li> Shandong
<ul>
<li> Weifang </li>
<li> Jinan </li>
<li> Yantai </li>
</ul>
</li>
<li> Guangdong
<ul>
<li> Guangzhou</li>
<li> Shenzhen</li>
<li> Dongguan</li>
</ul>
</li>
<li> Jiangsu</li>
<ul>
<li> Nanjing</li>
<li> Suzhou</li>
<li> Wuxi </li>
</ul>
</li>
</ul>
<hr />
</body>
</html>

Effect:

Chinese provinces and cities

<<:  What are the ways to import CSS? What is the difference between link and @import? How to choose

>>:  The difference and usage of single-line and double-line layout in Flex mobile layout

Recommend

js regular expression lookahead and lookbehind and non-capturing grouping

Table of contents Combining lookahead and lookbeh...

How to write a Node.JS version of a game

Table of contents Overview Build Process Related ...

Solution to the problem that Docker container cannot be stopped or killed

Docker version 1.13.1 Problem Process A MySQL con...

How to install docker under centos and remotely publish docker in springboot

Table of contents 1. Installation of JDK1.8 under...

A detailed discussion of MySQL deadlock and logs

Recently, several data anomalies have occurred in...

Steps to use ORM to add data in MySQL

【Foreword】 If you want to use ORM to operate data...

Configure VIM as a C++ development editor in Ubuntu

1. Copy the configuration file to the user enviro...

How to set the width attribute to the style of the span tag

If you directly set the width attribute to the sty...

Detailed explanation of the new background properties in CSS3

Previously, we knew several attributes of backgro...

How to implement an array lazy evaluation library in JavaScript

Table of contents Overview How to achieve it Spec...

Element avatar upload practice

This article uses the element official website an...

Analysis of the principles of docker containers

Table of contents 01 What is the essence of a con...

Vue implements chat interface

This article example shares the specific code of ...