<Dl> tag - defined list

[2019.07.03 study notes 2]

1. Define the list, no bullets, type not work.

2. Customize the list <dl> tag begins, starting from the defined list item <dt> tags, each custom list item begins with the definition of <dd>.

<! DOCTYPE HTML> 
<HTML lang = "EN"> 
<head> 
    <Meta charset = "UTF-. 8"> 
    <title> definition list </ title> 
</ head> 
<body> 
<DL> 
    <dt> computer < / dt> 
    <dd> instrument used to calculate ... ... </ dd> 
    <dt> display </ dt> 
    <dd> visually display the device information ... ... </ dd> 
    < dd> visually displaying information ... ... </ dd> 
</ DL> 
</ body> 
</ HTML>

 

Guess you like

Origin www.cnblogs.com/Caixingmin/p/11129763.html