Computer Science, asked by avneet9996, 10 months ago

Write am html code to generate following lists in html. 1.nepal •ktm •pkh 2.usa •lasvegas •texas 3.india •delhi •munbai

Answers

Answered by arpitparihar02
1

<HTML>

<HEAD>

<TITLE>Lists</TITLE>

</HEAD>

<BODY>

<OL type="1" start=1>

<LI>Nepal</LI>

<UL type="disc">

<LI>KTM</LI>

<LI>PKH</LI>

</UL>

<LI>U.S.A</LI>

<UL type="disc">

<LI>Las Vegas</LI>

<LI>Texas</LI>

</UL>

<LI>India</LI>

<UL type="disc">

<LI>Dehli</LI>

<LI>Mumbai</LI>

</UL>

</OL>

</BODY>

</HTML>

This Is Your Required HTML Code.

Similar questions