<!DOCTYPE html>
<html>
<head>
<title>dl tag example</title>
</head>
<body>
<h2>Example of <dl> tag</h2>
<dl>
<dt>Studytonight</dt>
<dd>Best place to learn coding online.</dd>
<dt>Some Term</dt>
<dd>Description of the term.</dd>
</dl>
</body>
</html>