<html>
<head><title>list of HTML</title></head>
<body>
<h1>this is order list</h1>
<ol type="a">
<li>CSE
<li>EEE
<li>ECE
</ol>
<h1>Unorder list</h1>
<ul>
<li type="square">C
<li>C++
<li>JAVA
</ul>
</body>
</html>
0 Comments