Filter (Advanced Search)
Downloads
2
Views
323
Video

Ordered List with Upper and Lower Case Letters | Lists

Details

<!DOCTYPE html>
<html>
<head>
    <Title>Ordered List with Upper and Lower Case Letters</Title>
</head>
<body>
<h2>Ordered List with Upper Case Letters</h2>
<ol type="A">
  <li>Monitor/ਮੋਨੀਟਰ </li>
  <li>Keyboard/ਕੀ-ਬੋਰਡ</li>
  <li>Mouse/ਮਾਊਸ </li>  
</ol>
<HR>
<h2>Ordered List with Lower Case Letters</h2>
<ol type="a">
  <li>Monitor/ਮੋਨੀਟਰ </li>
  <li>Keyboard/ਕੀ-ਬੋਰਡ</li>
  <li>Mouse/ਮਾਊਸ </li>  
</ol>
</body>
</html>


Output


Ad