HTML (13)
Part 1
Attribute (LIST TAG)
- UNNUMBERED LIST
- NUMBERED LIST
Numbered list : Normally browser automatically number the list with Arabic numeral 1.
To start numbering a list from 6 ↓↓↓
<ol start = 6>
<li>cake
<li>apple
<li>ball
</ol>
Eg ↓↓↓↓
<html>
<head>
<title>Sample Page </title>
</head>
<body>
<ol start = 6>
<li>cake
<li>apple
<li>ball
</ol>
</body>
0 Comments