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
Preface Slow query log is a very important functi...
Table of contents 1. Flink Overview 1.1 Basic Int...
1. After entering the container cat /etc/hosts It...
Table of contents Preface Introduction JavaScript...
To transfer files between the host and the contai...
Several common paging methods: 1. Escalator metho...
Table of contents 1. Vue2 syntax 2. Use of Vue3 1...
Preface Reduce is one of the new conventional arr...
Payment countdown to return to the home page case...
Preface Review and summary of mobile terminal rem...
Preface Under Linux, compilation and linking requ...
1. Check sql_mode select @@sql_mode The queried v...
This article describes how to install and configu...
Table of contents Functional Components How to wr...
Preface Recently, due to work reasons, I was work...