<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<p>Description lists serve as glossaries of terminology:</p>
<dl>
<dt>someThing</dt>
<dd>
<p> Returns a thing.</p>
</dd>
<dt>someOtherThing</dt>
<dd>
<p> Returns a different thing.</p>
</dd>
<dt>someThird</dt>
<dd>
<p> Takes just the first two and does a twirl.</p>
</dd>
<dt>someFourth</dt>
<dd>
<p> Returns the fourth thing.</p>
</dd>
</dl>
</body>
</html>