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
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
0
Answer:
Create an unordered list of 5 input devices in HTML?
Similar questions