Nested List Assignment in HTML | HTML Assignment
Type this code in text editor and save with .html extension
--------------------------------------------
<!doctype html>
<html>
<head></head>
<body bgcolor="darkred" text="white">
<ol type="I">
<li>MS Office
<ol type="A">
<li>MS Word</li>
<li>MS Excel</li>
<li>MS PowerPoint </li>
<li>MS Access </li>
</ol>
</li>
<li>LibreOffice
<ol type="A">
<li>LibreOffice Writer </li>
<li>LibreOffice Calc</li>
<li>LibreOffice Impress </li>
<ol type="i">
<li>Create Slide </li>
<li>Use Slide Transition </li>
<li>Use Animation </li>
<li>Slide Show </li>
</ol>
</ol>
<li>Computer Language
<ol type="A">
<li>Low Level Language </li>
<li>High Level Language
<ol type="i">
<li>COBOL</li>
<li>FORTRAN</li>
<li>C++</li>
<li>JAVA</li>
</ol>
</ol>
</li>
<li>Desktop Publishing
<ol type="A">
<li>Photoshop </li>
<li>CorelDraw</li>
<li>Page Maker </li>
</ol>
</li>
<li>Digital Marketing
<ol type="A">
<li>SEO</li>
<li>SMO</li>
</ol>
</li>
</ol>
</body>
</html>
--------------------------------------------
Output-
0 Comments