Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 2: HTML Essentials: Elements and Lists!
Instruction
Description Lists
Description lists (<dl>
) are suited for lists where each item has a title (term) and an explanation (description), such as glossaries or item descriptions.
-
Elements:
<dl>
wraps the list,<dt>
is used for each term, and<dd>
is used for each description.
-
Usage: Multiple
<dd>
elements can describe a single<dt>
, or a single<dd>
can describe multiple<dt>
terms. ...