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>
<h3>Lets make it now: </h3>
<li>First need to boil sticky noodles in a hot water. Its take 5 to 6 minutes. </li>
<li>In a hot fry pan give some oil then add slice onion </li>
<li>After few minutes later add vegetables & salt and wait few minutes for cooked these vegetables.
when vegetables are boiled properly mixxed eggs.</li>
<li>Add tomato sauce and mixed it properly with all the ingridents.</li>
<li>Then added boiled noodles and cooked it two to three minutes.</li>
<li>Before completing cooking add noodles masala and cooked for a minute. </li>
</ol> <!-- end of order listt -->
</body>
</html>
Comments
Post a Comment