-
Notifications
You must be signed in to change notification settings - Fork 0
/
spicy-chinese-fav.html
104 lines (97 loc) · 2.95 KB
/
spicy-chinese-fav.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
<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>Hot & Spicy Chinese Favorites</h3>
<table>
<tr>
<th>Name</th><th>Description</th><th>Price</th>
</tr>
<tr>
<td>L24. Szechuan Beef</td>
<td></td>
<td>$7.25</td>
</tr>
<tr>
<td>L24. Szechuan Chicken</td>
<td></td>
<td>$7.25</td>
</tr>
<tr>
<td>L24. Szechuan Shrimp</td>
<td></td>
<td>$7.25</td>
</tr>
<tr>
<td>General Tso's Chicken</td>
<td></td>
<td>$7.25</td>
</tr>
<tr>
<td>L8. Kung Pu Chicken</td>
<td>Chicken sautéed in a spicy sauce with peanut bamboo shoots, mushrooms and onions</td>
<td>$7.25</td>
</tr>
<tr>
<td>L8. Kung Pu Shrimp</td>
<td>Shrimp sautéed in a spicy sauce with peanut bamboo shoots, mushrooms and onions</td>
<td>$7.25</td>
</tr>
<tr>
<td>L23. Mongolian Beef</td>
<td>Beef stir fried with green onion in a spicy sauce</td>
<td>$7.95</td>
</tr>
<tr>
<td>L13. Twice Cooked Pork</td>
<td>Pork stir fried with Chinese vegetables in a spicy sauce</td>
<td>$7.25</td>
</tr>
<tr>
<td>L6. Hot Pepper Chicken</td>
<td>Chicken with bell pepper, bamboo and green onion sautéed in a spicy basil garlic sauce</td>
<td>$7.25</td>
</tr>
<tr>
<td>L19. Home Style Beef</td>
<td>Beef stir- fried with carrots and celery in spicy sauce</td>
<td>$7.95</td>
</tr>
<tr>
<td>L65. Spicy Ginger Shrimp</td>
<td>Shrimp sautéed with Chinese vegetables in chef spicy sauce</td>
<td>$7.95</td>
</tr>
<tr>
<td>L66. Hunan Chicken</td>
<td>Chicken with Chinese vegetables in a hot pepper sauce</td>
<td>$7.95</td>
</tr>
<tr>
<td>L66. Hunan Beef</td>
<td>Beef with Chinese vegetables in a hot pepper sauce</td>
<td>$7.25</td>
</tr>
<tr>
<td>L66. Hunan Shrimp</td>
<td>Shrimp with Chinese vegetables in a hot pepper sauce</td>
<td>$7.25</td>
</tr>
<tr>
<td>L64. Princess Shrimp</td>
<td>Fried shrimp in a spicy sauce</td>
<td>$7.95</td>
</tr>
</table>
</body>