Veg MOMOS Recipe
This is the first certified HTML & CSS course that I'm enrolled in. I've already taken basic HTML class during my schooling.I'm currently enrolled in Front-end Fundamental course provided by Pirple.
Till now I've learned about basic/fundamental tags of HTML such as <head>, <title>, <body>
elements, paragraph tags, heading tags, emphasizing tags, lists and comments, nested lists, etc.
This is a simple web-page containing HTML codes only. It is the Homework #1: Lists, and contains the recipe for my favorite food MoMo. It has two list: an unordered list of all the ingredients needed & an ordered list, detailing the steps needed to prepare the dish.
<!DOCTYPE html> <!--informs the browser that the document type is HTML-->
<html lang="en"> <!--wraps all content-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<!--This will be visible in webpage-->
<body>
<h2>Veg MoMo Recipe</h2>
<h3>Ingredients</h3>
<!--unordered list for ingredients-->
<ul>
<li>1 cup all purpose flour</li>
<li>1.5 tablespoon oil</li>
<li>1.5 teaspoon salt or as required</li>
<li>2 to 3 tablespoon water for kneading or as required</li>
<li>1.5 to 1.75 cups of mixture of finely chopped vegetables</li>
<!--nested unordered list inside ingrediants-->
<ul>
<li>1/2 cup chopped cabbage</li>
<li>1/2 cup chopped carrot</li>
<li>1/3 cup chopped french beans</li>
<li>1/4 cup chopped capsicum</li>
</ul>
<!--nested unordered list is closed-->
<li>2 finely chopped small sized spring onions </li>
<li>3 to 4 finely chopped small garlic</li>
<li>1.5 teaspoon light soy sauce or as required</li>
<li>1/2 teaspoon black pepper powder or as required</li>
</ul>
<!--unordered list is terminated-->
<h3>Instructions</h3>
<!--ordered list for steps/instructions -->
<ol>
<li>Take the all purpose flour, salt and oil in a bowl and mix it.</li>
<li>Add water in parts and knead to a firm dough.</li>
<li>Cover the dough and keep aside for 30 minutes.</li>
<li>Prepare momos stuffing:</li>
<!--nested ordered list inside ordered list for instructions-->
<ol>
<li>Heat 1 tablespoon oil in a pan.</li>
<li>Add finely chopped garlic and saute for 2-3 seconds.</li>
<li>Add onions and saute for 10-15 seconds.</li>
<li>Add all finely chopped vegetables and saute or stir fry for 2 to 3 minutes.</li>
<li>Add soys sauce, salt and pepper.</li>
<li>Continue to stir for 2 to 3 minutes.</li>
<li>Switch off the flame and add 1 t0 2 tablespoon of the onions green.</li>
<li>Check the taste and add more salt, pepper or soya sauce, if required.</li>
</ol>
<!--nested ordered list ends-->
<li>Divide the dough into equal sizes.</li>
<li>Make ball of each slices and keep them covered with moist napkin.</li>
<li>Roll each dough ball into a thin circle of about 2-3 inch diameter.</li>
<li>Place 1 or 2 teaspoon of vegetable stuffing in the centre.</li>
<li>Lift one side of the edge and start pleating.</li>
<li>Start folding and forming the pleats one by one. Towards the end, join the pleats in the center.</li>
<li>Prepare all momos this way and keep them covered under a moist napkin.</li>
<li>Boil water in a steamer.</li>
<li>Place momos in steamer pan. <em>Make sure that steamer pan doesn't touch water.</em></li>
<li>Steam them for 5-6 minutes.</li>
<li>Once done, granish with spring onion grens.</li>
<li>Serve veg momos with sauce.</li>
<!--ordered list ends-->
</ol>
</body>
</html>
Comments
Post a Comment