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
In the previous article, we learned about the pas...
Step 1: Install Stow In this example, we are usin...
Table of contents Join syntax: 1. InnerJOIN: (Inn...
Networks usage tutorial Official website docker-c...
When making a website, I found that video files, s...
Docker-compose deploys gitlab 1. Install Docker I...
I have recently been developing a visual operatio...
1. Check sql_mode select @@sql_mode The queried v...
Function: Jump to the previous page or the next p...
Let’s look at the effect first: This effect looks...
mysql 5.7.21 winx64 installation and configuratio...
This article mainly introduces the implementation...
I wonder if you have ever thought about this ques...
Copy code The code is as follows: <html> &l...
Principle: First hide the input element, then use...