HTML description list
A simple example of an ordered description list.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<dl>
<dt>Milk</dt>
<dd>- Fresh milk from the cow</dd>
<dt>Juice</dt>
<dd>- Tasty juice from fresh oranges</dd>
</dl>
</body>
</html>