Skip to main content

Front-end Fundamentals Assignment #1: Lists

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

Popular posts from this blog

B.Sc. CSIT Micro-syllabus 1st Semester

Introduction: The Bachelor of Science in Computer Science and Information Technology (B.Sc.CSIT) curriculum is designed by closely following the courses practiced in accredited international universities, subject to the condition that the intake students are twelve years of schooling in the science stream or equivalent from any university recognized by Tribhuvan University (TU). In addition to the foundation and core Computer Science and Information Technology courses, the program offers several elective courses to fulfill the demand of high technology applications development. The foundation and core courses are designed to meet the undergraduate academic program requirement, and the service courses are designed to meet the need of fast changing computer technology and application. Students enrolled in the four year B.Sc.CSIT program are required to take courses in design and implementation of computer software systems, foundation in the theoretical model of computer ...

My Favorite Book: Maha Ko Ma (महको म)

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, image tags, links, <div>, <header>, <footer> etc. This is a simple web-page containing HTML codes only. It is the Project #1 of the course.  It includes about my favorite book: Maha Ko Ma (महको म) written by famous Nepali artist, comedian, singer (and many more) Madan Krishna Shrestha.It is an autobiographical book that throws light on the unseen and perhaps the harsher side of the life of one of the most eminent entertainers in the Nepali entertainment scene, Madan Krishna Shrestha.  <! DOCTYPE   html > < htm...

2018 FIFA World Cup Russia - A Historic Lookup

2018 FIFA World Cup is going to be held in Russia from 14th of June to 15th of July. 32 different nations around the world are going to be the part of the Largest Football Festival of the World. Altogether 64 matches will be played in 12 different stadiums located in 11 different cities of Russia. 2018 FIFA World Cup Draw  (see the image below) Participating Nations and there World Cup history 1. Iceland World Cub Debut : 2018 2. Panama World Cup Debut : 2018 3. Senegal World cup Debut  : 2002 Appearance           : 2 times, 2002 & 2018 Achievements       : Quarter-Finals, 2002 4. Egypt World cup Debut : 1934 Appearance          : 3 times, 1934, 1990 & 2018 Achievements      : Top 13, 1934 5. Australia World cup Debut  : 1974 Appearance           : 5 times, 1974...