description list html

description list html



<!DOCTYPE html>
<html>
<head>
	<title>website</title>
</head>
<body>

<dl>
	<dt>
red
	</dt>
<dd>
red is a color
</dd>

<dt>
	green
</dt>

<dd>
	green is another color

</dd>


</dl>


</body>
</html>