Computer Science, asked by chiragbhati17, 9 months ago

Write an HTML program to create the following Nested list.
Example of Nested List
1. INPUT DEVICES
• Keyboard • Mouse
• Scanners
2. OUTPUT DEVICES o Monitor
o Printer o Plotter

Answers

Answered by BLANKBABA
22

Answer:

Brainliest Please

Explanation:

<ol itemtype="1">

<li>Input Devices

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

<li>Keyboard</li>

<li>Mouse</li>

<li>Scanner</li>

</ul>

</li>

<li>Output Devices

<ul>

<li>Monitor</li>

<li>Printer</li>

<li>Plotter</li>

</ul>

</li>

Answered by priyaary136
0

Answer:

Create an unordered list of 5 input devices in HTML?

Similar questions