Write an HTML statement to create an ordered list of small roman numerals (i, ii, ----) starting with 'vi'.
Answers
Answered by
9
<html>
<head><title>Ordered list</title>
</head>
<body>
<ol type ="i" start = "iv">
<li> sample text
<li>sample text
<li>sample text
</ol>
</body>
</html>
list created will create the list as asked in ur question
HOPE IT HELPS....
Similar questions