Language : HTML -
The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in a web browser. It defines the meaning and structure of web content. It is often assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript.
By default, an ordered list will start counting from 1. If you want to start counting from a specified number, you can use the start attribute:
<!DOCTYPE html>
<html>
<head>
<Title>Control List Counting</Title>
</head>
<body>
<h3>Control List Counting:</h3>
<ol start="10">
<li>Monitor/ਮੋਨੀਟਰ </li>
<li>Keyboard/ਕੀ-ਬੋਰਡ</li>
<li>Mouse/ਮਾਊਸ </li>
</ol>
</body>
</html>