Computer Applications
Create a nest list as follows using both ordered and unordered list tags :
- Operating System
- Disk Operating System
- Windows
- Unix
- Linux
- MS - Office
- Word
- Excel
- PowerPoint
- Access
- OpenOffice.org
- Writer
- Calc
- Impress
- Base
- Accessories
- Paint
- Calculator
- Note Pad
- Word Pad
HTML Intro
9 Likes
Answer
<OL TYPE = "1">
<LI>
Operating System
<UL TYPE = "CIRCLE">
<LI> Disk Operating System </LI>
<LI> Windows </LI>
<LI> Unix </LI>
<LI> Linux </LI>
</UL>
</LI>
<LI>
MS - Office
<UL TYPE = "SQUARE">
<LI> Word </LI>
<LI> Excel </LI>
<LI> PowerPoint </LI>
<LI> Access </LI>
</UL>
</LI>
<LI>
OpenOffice.org
<UL TYPE = "DISC">
<LI> Writer </LI>
<LI>Calc </LI>
<LI>Impress </LI>
<LI>Base </LI>
</UL>
</LI>
<LI>
Accessories
<UL TYPE = "DISC">
<LI> Paint </LI>
<LI> Calculator </LI>
<LI> Note Pad </LI>
<LI> Word Pad </LI>
</UL>
</LI>
</OL>
Output

Answered By
3 Likes
Related Questions
Insert the
<UL>tags (unordered list) around the following list text.- Car
- Scooter
- Van
Change the style of the bullets: e.g., circle, square, disc.
Insert the
<OL>tag (ordered list) around the following list text.e. Story Books f. Computer Books g. Text Books h. General BooksChange the style of the bullets : e.g., I, i, A and 1,2
Apply different font styles on these lists.
Write HTML code to display an ordered list (with uppercase roman numbers) listing any three subjects being taught in your school. The web page should have a red background and the title of the page should be 'My Subjects'.