Computer Applications
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>
HTML Intro
4 Likes
Answer
Output

Answered By
1 Like
Related Questions
Types of ordered lists.
<HTML> <BODY> <H4>Numbered list:</H4> <OL> <LI>Apples</LI> <LI>Bananas</LI> </OL> <H4>Letters list:</H4> <OL type="A"> <LI>Apples</LI> <LI>Bananas</LI> <LI>Lemons</LI> <LI>Oranges</LI> </OL> <H4>Lowercase letters list:</H4> <OL type="a"> <LI>Apples</LI> <LI>Bananas</LI> </OL> <H4>Roman numbers list:</H4> <OL type="I"> <LI>Apples</LI> <LI>Bananas</LI> </OL> <H4>Lowercase Roman numbers list:</H4> <OL type="i"> <LI>Apples</LI> <LI>Bananas</LI> </OL> </BODY> </HTML>
Types of unordered lists.
<HTML> <BODY> <H4>Disc bullets list:</H4> <UL type="disc"> <LI>Apples</LI> <LI>Bananas</LI> </UL> <H4>Circle bullets list:</H4> <UL type="circle"> <LI>Apples</LI> <LI>Bananas</LI> </UL> <H4>Square bullets list:</H4> <UL type="square"> <LI>Apples</LI> </UL> </BODY> </HTML>
Definition List.
<HTML> <BODY> <H4>A Definition List:</H4> <DL> <DT>Coffee</DT> <DD>Black hot drink</DD> <DT>Milk</DT> <DD>White cold drink</DD> </DL> </BODY> </HTML>
Insert the
<UL>
tag around the following list text.Basic etiquette for gentlemen for greeting a lady.
- Wait for her acknowledging bow before starting conversation.
- Walk with her if she expresses a wish to converse.
- When walking, the lady must always have the wall.
- Never make a lady stand talking in the street.
- On outing in a restaurant, first offer her a seat and then take your seat.