DL TAG EXAMPLE
Run
<!DOCTYPE html> 
<html> 
	<head> 
		<title>dl tag example</title> 
	</head> 
	<body> 
		<h2>Example of &lt;dl&gt; 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>