-->

HTML page with ul tag

<html> <!--is root tag/starting tag-->
<head> <!--used for meta tag-->
<title><!--used for title-->
understanding ordered list
</title>
</head>
<body><!--is container-->
<!-- following is unordered list-->
<ul type="square">
<!-- here type can be circle or disc or square-->
<li>Grapes</li>
<li>apple</li>
<li>Mango</li>
<li>Grapes</li>
<li>apple</li>
<li>Mango</li>
</ul><!--closing of ul-->
</body>
</html>

 

No comments:

Post a Comment