- index.html
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Description List</title>
</head>
<body>
<h1>Deciphering list tags</h1>
<dl>
<dt>dl</dt>
<dd>The description list itself</dd>
<dt>dt</dt>
<dd>Description Term</dd>
<dt>dd</dt>
<dd>Description Details</dd>
</dl>
</body>
</html>
You have moved to another page
GoalsCompleted
0
To the existing list of descriptions, add:
- Fourth element with the term
ul
and the description ofUnordered List
. - Fifth item with the term
li
and the description ofList Item
.