Q3

CODE

<html>
<head>
<title></title>
</head>
<body>
<h1>Example of HTML List</h1>
<h2>Unordered List</h2>

<ul>
<li>Java</li>
<li>PHP</li>
<li>.NET</li>
</ul>

<h2>Ordered List</h2>

<ol type=1.>
<li>Java</li>
<li>PHP</li>
<li>.NET</li>
</ol>

<h2>Description List</h2>

<dl>
<dt>Java</dt><dd>It is opp language.</dd>
<dt>PHP</dt><dd>It is open source.</dd>
<dt>.NET</dt><dd>.NET is also a programming language.</dd>
</dl>
</body>
</html>

No comments:

Post a Comment