PRACTICAL NO. : 6 – Create a webpage using description list in HTML .
ENROLLEMENT NO. : 05480001723
CODE :
<html>
<head>
<title> Description list </title>
</head>
<body>
<p align = 'center'> Description list </p>
<dl>
<dt> URL </dt>
<dd> URL stands for Uniform Resource Location. A URL is nothing more than the
address of a given unique resource on the web. </dd> <br>
<dt> WEB BROWSER </dt>
<dd> A Web browser is an application for accessing websites and the internet.
</dd> <br>
<dt> WEBSITE </dt>
<dd> A Website is a collection of web pages and related content that is
identified by a common domain name and published on at least one web server.
</dd> <br>
<dt> HTML <dt>
<dd> HTML (Hyper Text Markup Language) is the most basic building block of
the Web. It defines the meaning and structure of web content. </dd><br>
</dl>
</body>
</html>
OUTPUT :