summaryrefslogtreecommitdiff
path: root/static/recipes/omurice.html
blob: 170c00dfd6a7213be7c763f9d97e93aac835c7b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en-US">

<head>
    <title>Omurice Recipe</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=devide-width,initial-scale=1">
    <link rel="stylesheet" href="../style.css">
    <link rel="icon" type="image/x-icon" href="../../images/favicon.ico" sizes="16x16">
</head>

<body>
    <header>
        <nav>
            <ul>
                <li>
                    <a href="../../index.html">Home</a>
                </li>
                <li>
                    <a href="../about.html">About</a>
                </li>
                <li>
                    <a href="./overview.html">Recipes</a>
                </li>
            </ul>
        </nav>

    </header>

    <div id="headerwrapper">
        <h1>My Omurice Recipe</h1>
    </div>

    <main id="wrapper-center">
        <div id="lists">
            <h2>Description</h2> 
            <p>
                This is my take on Omurice, a popular japanese chicken fried rice dish with an omelette on top.
            </p>

            <h2>Ingredients</h2>
            <ul>
                <li>100g Chicken Thigh or Breast</li>
                <li>1 tbsp Soy Sauce</li>
                <li>1 tbsp Worcestershire Sauce</li>
                <li>3 tbsp Ketchup</li>
                <li>1 Carrot</li>
                <li>Half an Onion</li>
                <li>3 Cloves of Garlic</li>
                <li>150g Rice</li>
                <li>3 Eggs</li>
            </ul>

            <h2>Instructions</h2>
            <ol>
                <li>
                    <p>
                        Cut the chicken into bite-sized pieces.
                        Dice the carrot and the onion.
                        Mince the garlic.
                    </p>
                </li>
                <li>
                    <p>
                        Fry the chicken over medium heat until the outside begins to brown. Remove from pan.
                    </p>
                </li>
                <li>
                    <p>
                        Fry the carrot and the onion over medium-low heat until soft.
                    </p>
                </li>
                <li>
                    <p>
                        Add the garlic to the pan and sautee until fragrant.
                    </p>
                </li>
                <li>
                    <p>
                        Add the chicken together with the rice back into the pan.
                        Add Ketchup, Soy Sauce and Worcestershire Sauce and fry for another minute.
                    </p>
                </li>
                <li>
                    <p>
                        Put the fried rice into a bowl and press it down tightly.
                        Put the bowl upside-down on a plate and leave it for later.
                    </p>
                </li>
                <li>
                    <p>
                        Mix 3 eggs together and pour them in a non-stick pan over medium-high heat.
                        Stir constantly from the outside-in, until a nice fluffy middle has formed, then reduce the heat to low.
                        Then let it cook until the bottom has settled and the top is still a bit undercooked.
                    </p>
                </li>
                <li>
                    <p>
                        Remove the bowl from the plate, so you have a nice mound of rice, and pour the egg directly
                        from the pan over the top. You can add a bit more Ketchup, if you like.
                    </p>
                </li>
            </ol>
        </div>

        <div id="img-wrapper">
            <img src="../../images/omurice.jpg" alt="An image of oyakodon.">
        </div>

    </main>
</body>
<script src=""></script>

</html>