ਪ੍ਰੈਕ 3: ਆਰਡਰਡ ਲਿਸਟ ਦਾ ਇਸਤੇਮਾਲ ਕਰਦੇ ਹੋਏ Html ਪੇਜ਼ ਬਣਾਓ।

<html>
<head>
<title>Ordered List</title>
</head>

<body>
Input Devices:
<ol type='i'>
<li>Keyboard</li>
<li>Mouse</li>
</ol>
Output Devices:
<ol type='a'>
<li>Monitor</li>
<li>Speaker</li>
<li>Printer</li>
</ol>
</body>
</html>

Output:

Comments