Computer Science, asked by harshalvikmani9, 4 months ago


Write HTML program for following output​

Attachments:

Answers

Answered by vijayghore
3

Answer:

Explanation:

<html>

    <head>

         <title>Nested List</title>

    </head>

    <body>

         <h1>Nested List</h1>

         <ul>

               <li>Libre Office</li>

               <li>Advance Web Design</li>

                    <ol type = "1">

                            <li>Forms</li>

                            <li>Meta Tags</li>

                            <li>Hyperlinks</li>

                    </ol>

              <li>JavaScript</li>

                  <ul type = "disc">

                          <li>DataTypes</li>

                          <li>If Statements</li>

                          <li>Loops</li>

                  </ul>

         </ul>

   </body>

</html>

Similar questions