HOW2
Run
<!DOCTYPE html>
<html lang="en">
<head>
  <title>HTML </title>
</head>
<style>
  dt {
    font-weight: bold;
  }
</style>
<body>
    <h2> Description List </h2>
	<dl>
	  <dt> Apple </dt>
	  <dd> Apple is a  fruit. It is good to eat fruits everyday</dd>
	  <dd> Apple is the also popoular company who manufactures devices, computers and softwares </dd>
	  
	  <dt>Mango</dt>
	  <dd> It is a fruit. It is rich in Vitamin C</dd>
	  <dd> Mango is a famous clothing Brand. It has wide collection of stylish clothes.</dd> 
	</dl>
</body>
</html>