Advertisements
Advertisements
Question
Write a program in HTML for the following output:
(i) Arts
A. History
B. Geography
(ii) Science
I. Computer Science
II. Physics
(iii) Commerce
O English
O Accounts
Answer in Brief
Solution
<HTML>
<BODY>
<OL type = “i” >
<LI> Arts
<OL Type = “A” >
<LI> History </LI>
<LI> Geography </LI> </OL>
<LI> SCIENCE
<OL type = “I”>
<LI> Computer Science </LI>
<LI> Physics </LI>
</OL>
<LI> Commerce
<UL Type = “Circle”>
<LI> ENGLISH </LI>
<LI> ACCOUNTS </LI>
</UL> </LI>
</OL>
</BODY>
</HTML>
shaalaa.com
Hyper Text Markup Language (HTML)
Is there an error in this question or solution?