<dl> starts a list of definitions. <dt> is the term being defined. <dd> is the definition of the term. <!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<title><dl> - <dt> - <dd></title>
</head>
<body>
<dl>
<dt>Foo</dt><dd>A foo without a foo is still a foo</dd>
<dt>Bar</dt><dd>A bar is never the same</dd>
<dt>Baz</dt><dd>The baz, who's the baz?</dd>
</dl>
</body>
</html>