Posts

Showing posts with the label Create Order and Unorder list in HTML

Create Order and Unorder list in HTML

 Here is the details of order and unorder list creation in HTML: <!DOCTYPE html> <html> <head>   <meta charset="utf-8">   <meta name="viewport" content="width=device-width">   <title>My Favorite Food</title> </head> <body>   <h2>I love Noodles !!! </h2>   <h3>Lets make it..... </h3>   <h4> Ingredients: </h4>     <!-- Unorder List -->   <ul>     <li>Sticky Noodles. </li>     <li>Onion </li>     <li>Egg </li>     <li>Vegetables </li>     <li> Noodles Masala </li>     <li>Tomato Sauce </li>     <li>Oil</li>       </ul> <!-- end of unorder list -->     <!-- Order list -->   <ol>   ...