HTML-program 15
Posted On Wednesday, May 20, 2009 at at 1:31 AM by RashedProgram 15:
<html>
<head>
<title>Definition
</title>
</head>
<body>
<dl> <!--dl is definition list-->
<h1><dt>Computer</h1>
<dd>Computer is a computing machine.
<h1><dt>school</h1>
<dd>School is an organisation where different branches of knowledge are taught.
</dl>
</body>
</html>
- Explanation:
- To define different words or terms <dl> is used. dl means definition list. It contains two attributes <dt> and <dd>. dt for definition term and dd for definition description.
- It will look like:
- Computer
- Computer is a computing machine.
- school
- School is an organisation where different branches of knowledge are taught.