Computer Science, asked by meenakushwaha463, 6 months ago

write a simple HTML code which display list of input device by using unordered list.​

Answers

Answered by sangeetabhanwar
0

Answer:

<!DOCTYPE html>

<html>

<body>  

<h2>Input Devices</h2>

<ul style="list-style-type:disc;">

 <li>Keyboard.</li>

 <li>Mouse.</li>

 <li>Joy Stick.</li>

 <li>Light pen.</li>

 <li>Track Ball.</li>

 <li>Scanner.</li>

 <li>Graphic Tablet.</li>

  <li>Microphone.</li>

</ul>    

</body>

</html>

Explanation:

unordered list types:

disc        Sets the list item marker to a bullet (default)

circle Sets the list item marker to a circle

square Sets the list item marker to a square

none The list items will not be marked

Similar questions