HTML Create List and Order type
Create List and Order type
Here we will learn how to create the list as you can see below here are some new tags which I added to create the list for anything but I made a list of fruits as you can see. So the tags to create the lists are li and to add the numbering I add the tag order list type(ol type) you can change the order type for example if you will write a inside this tag then you list numbering will be like a b c etc
So In this way you can use these tags
<html>
<head>
<title>
LIST of Fruits
</title>
<body>
<b>
Creating list </b>
<br>
<p>
This is the list of fruits
</p>
<ol type="1">
<li>
banana
</li>
<li>
apple
</li>
<li>
mango
</li>
</body>
</html>
Comments
Post a Comment