<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<p>lorem ipsun</p>
<!------List----->
<ol>
<li>banana</li>
<li>mango</li>
</ol>
</body>
</html>
this is by default you will find 1.2.3. in ordered number
and Now if you want to add type of ordered list there are types
Other type of Ordred List..
A
i -- it will give you roman numeric
a
I
>> If you want to start from any number instead of default value 1 you can update it with
tag start ="10"
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<p>lorem ipsun</p>
<!------List----->
<ol type="1" start="10">
<li>banana</li>
<li>mango</li>
</ol>
</body>
</html>
Comments
Post a Comment