-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchinese-gourmet.html
132 lines (122 loc) · 4.2 KB
/
chinese-gourmet.html
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
128
129
130
131
132
<body>
<style>
table {
border-collapse: collapse;
width: 100%;
}
tr:hover {
background-color: #a1affd;
}
td, th {
border: 1px solid #eeeeee;
text-align: left;
padding: 8px;
}
</style>
<h3>Chinese Gourmet</h3>
<table>
<tr>
<th>Name</th><th>Description</th><th>Price</th>
</tr>
<tr>
<td>LT: Long Thanh Combination</td>
<td>Shrimp, chicken and beef with Chinese vegetables in a white sauce</td>
<td>$8.50</td>
</tr>
<tr>
<td>L1. Cashew Chicken</td>
<td>Fried battered chicken served with cashew sauce</td>
<td>$7.25</td>
</tr>
<tr>
<td>L14. Beef & Broccoli</td>
<td>Beef, broccoli, onion, and bamboo shoots sautéed in a brown sauce</td>
<td>$7.50</td>
</tr>
<tr>
<td>L7. Soft Noodle Cantonese Style</td>
<td>Soft noodles stir fried with tender beef, chicken, shrimp, and Chinese vegetables</td>
<td>$8.50</td>
</tr>
<tr>
<td>L17. Garlic Chicken</td>
<td>Sliced chicken with water chestnuts and mushroom in a garlic sauce</td>
<td>$7.25</td>
</tr>
<tr>
<td>L17. Garlic Shrimp</td>
<td>Shrimp with water chestnuts and mushroom in a garlic sauce</td>
<td>$7.25</td>
</tr>
<tr>
<td>L14. Sesame Chicken</td>
<td>Fried battered chicken sautéed with beli pepper and carrots in a special sweet sauce</td>
<td>$7.25</td>
</tr>
<tr>
<td>L10. Moo Goo Gai Pan</td>
<td>Chicken sautéed with Chinese vegetables</td>
<td>$7.25</td>
</tr>
<tr>
<td>L5. Pepper Steak</td>
<td>Beef with bell pepper and onions in a brown sauce</td>
<td>$7.95</td>
</tr>
<tr>
<td>L61. Crystal Shrimp</td>
<td>Shrimp, broccoli, snow peas, and water chestnuts in a white sauce</td>
<td>$7.95</td>
</tr>
<tr>
<td>L62. Hung Shue Chicken</td>
<td>Fried battered chicken sautéed with Chinese vegetables</td>
<td>$7.25</td>
</tr>
<tr>
<td>L18. Beef Snow Peas</td>
<td>Beef with crunchy pea pods, bamboo shoots and water chestnuts in a brown sauce</td>
<td>$7.95</td>
</tr>
<tr>
<td>L18. Shrimp Snow Peas</td>
<td>Shrimp with crunchy pea pods, bamboo shoots and water chestnuts in a brown sauce</td>
<td>$7.95</td>
</tr>
<tr>
<td>L22. Chow Steak Kew</td>
<td>Beef with sautéed Chinese vegetables in a tasty brown sauce</td>
<td>$7.95</td>
</tr>
<tr>
<td>L22. Shrimp Kew</td>
<td>Shrimp with sautéed Chinese vegetables in a tasty brown sauce</td>
<td>$7.95</td>
</tr>
<tr>
<td>L63. Imperial Shrimp</td>
<td>Fried battered shrimp sautéed with pineapple, carrots and bell pepper in a spicy sweet sauce</td>
<td>$7.95</td>
</tr>
<tr>
<td>L20. Vegetable Delight</td>
<td>Chinese vegetables sautéed in your choice of brown or white sauce</td>
<td>$6.95</td>
</tr>
<tr>
<td>LV7. Tofu Vegetable Soft Noodle</td>
<td>Soft noodle stir- fried with Chinese vegetables</td>
<td>$7.25</td>
</tr>
<tr>
<td>LV64. Tofu Vegetable Suprene</td>
<td>Fried tofu stir fried with Chinese vegetable with white or brown sauce</td>
<td>$7.25</td>
</tr>
<tr>
<td>LV65. Szechuan Tofu Vegetable Delight</td>
<td>Fried tofu with Chinese vegetable with szechuan sauce</td>
<td>$7.25</td>
</tr>
</table>
</body>