CBSE Class 10 Computer Applications Question 42 of 77

HTML I — Basic HTML Elements — Question 13

Back to all questions
13
Question

Question 23

Nested List.

<HTML>
<BODY>
<H4>A nested List:</H4>
<ul>
<LI>Coffee</LI> 
<LI>Tea</LI>
<ul>
<LI>Black tea</LI> 
<LI>Green tea</LI> 
</UL>
<LI>Juice</LI>
<LI>Milk</LI>
</UL>
</BODY>
</HTML>
Answer
Output