We usually use the <ul> <li> label, but the DD and DT labels are quite good, especially for release.ProgramYou can use the list of functional modules for layout.
<DL> </dl> <DT> </DT> <DD> </DD>
<DL> </dl> is used to create a normal list, and <DT> </DT> is used to create upper-layer projects in the list, <DD> </DD> is used to create the lowest-level project in the list, <DT> </DT> and <DD> </DD> must be placed between <DL> </dl> flag pairs. You will understand the following example:
DL -- Define list -- definition list
DT -- Define list title -- is used to generate the title of each list item in the definition list. You can repeatedly use the title to define multiple list items.
Dd -- Define list define -- used to generate the plain text fields of each list item in the definition list. Multiple plain text fields can be defined for repeated use. Dd is a brief description or solution of corresponding dt
Example:
<DL>
<DT> today
<DD> Today is yesterday.
<DT> tomorrow
<DD> tomorrow is today.
</Dl>