List



<doctype html!>

<html>

    <head>

        <title>Web Practical </title>

    </head>

<body>

    <b><u>World:</u></b>

    <ol>

        <li>&nbsp;Asia:</li>

            <ul type="disc">

                <li>Nepal</li>

                <li>China</li>

                <li>Bangladesh</li>

            </ul>

       <li>&nbsp;<i>Europe:</i></li>

            <ol type="i">

                <li>England</li>                

                <li>France</li>

            </ol>

        <li>&nbsp;<i>Africa:</i></li>

            <ol type="a">

                <li>Ghana</li>

                <li>Uganda</li>

            </ol>

        <li>&nbsp;<i>Australia</i>

        </li>      

  </ol>

   <ul type="none">

<li>

<b>Barclays Premier League</b>

    <ol type="i">

        <li>Manchester United</li>

        <li>Manchester City</li>

        <li>Chelsea</li>

        <li>Arsenal</li>

    </ol>

</li>

<li>

<b>LaLiga</b>    

    <ol type="i">

        <li>Real Madrid</li>

        <li>Barcelona</li>

    </ol>

</li>

<li>

<b>Bundesliga</b>

    <ol type="i">

        <li>Bayern Munchen</li>

        <li>Borussia Dortmund</li>

    </ol>

</li>

</body>
</html>

Comments