-
Notifications
You must be signed in to change notification settings - Fork 1
/
Recipe.aspx
127 lines (112 loc) · 4.68 KB
/
Recipe.aspx
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
115
116
117
118
119
120
121
122
123
124
125
126
127
<%@ Page Title="Recipes" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="Recipe.aspx.cs" Inherits="Recipe" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
</asp:Content>
<asp:Content ContentPlaceHolderID="ContentPlaceHolder2" ID="Content2" runat="server">
<link rel="stylesheet" href="StyleSheet.css" />
<link rel="stylesheet" href="css/contact.css" />
<div id="recipesMain">
<table cellspacing="30">
<asp:label id="lblCheckBelow" runat="server" text=""></asp:label>
<tr>
<td>
<img src="image/Recipe/Quesadillas.jpg" height="141" width="250" />
</td>
<td>
<span class="foodHeadings"><b> Honeydew Melon Sherbet </b>
</span>
<br />
<br />
<span class="foodHeadings"><b>Ingridients :</b>
</span>
<br />
<ul>
<li>4 1/2 cups cubed honeydew melon</li>
<li>1 1/2 cups lime sherbet</li>
</ul>
<br />
<br />
<span class="foodHeadings">Directions :
</span>
<br />
<ul>
<li>
<p>
Place honeydew melon in a single layer on a baking sheet. Cover and freeze until firm, about 30 minutes.
Transfer frozen melon to a food processor with the sherbet and lime juice. Puree until smooth.
</p>
</li>
<li>
<p>Pour mixture evenly into 4 glasses, and garnish each glass with a strawberry. Serve immediately.</p>
</li>
</ul>
<br />
<br />
<span class="foodHeadings">Tip :
</span>
<ul>
<li>Aluminum foil can be used to keep food moist, cook it evenly, and make clean-up easier.</li>
</ul>
<hr size="5" style="color: rgb(254, 0, 0)" />
</td>
</tr>
<!-- <tr>
<td>
2).
</td>
</tr>-->
<tr>
<td>
<img src="image/Recipe/Salmon.jpg" height="141" width="250" />
</td>
<td>
<span class="foodHeadings"><b>Veggie Manchurian Bowl </b>
</span>
<br />
<br />
<span class="foodHeadings">Ingridients :
</span>
<br />
<ul>
<li>0.5 Kg cabbage</li>
<li>0.5 Kg green pepper </li>
<li> small onion, diced </li>
<li>2 table spoon tastemaker</li>
<li>3 tablespoons vegetable oil</li>
<li>1 kg semolina floor</li>
</ul>
<br />
<br />
<span class="foodHeadings">Description :
</span>
<br />
<ul>
<li>
<p>
Grind all the vegetables into fine pieces and mix it with semolina floor and make balls
</p>
</li>
<li>
<p>
Shape into 2 ounce balls; about 7 or 8 balls. In a large skillet over medium heat, heat the oil.
Fry each ball for 5 minutes on each side or until crispy and golden brown
</p>
</li>
</ul>
<br />
<br />
<span class="foodHeadings">Tip :
</span>
<ul>
<li>Add it in the soup and your dish is ready!</li>
</ul>
</td>
</tr>
<tr><td><span class="foodHeadings">Check out some more recipes clicking the links below below</span></td></tr>
<tr>
<td>
<div runat="server" id="multiRecipe"></div>
</td>
</tr>
</table>
</div>
</asp:Content>