-
Notifications
You must be signed in to change notification settings - Fork 0
/
vietnamese-rice-dish.html
67 lines (57 loc) · 1.78 KB
/
vietnamese-rice-dish.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
<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>Vietnamese Rice Dishes</h3>
<table>
<tr>
<th>Name</th><th>Description</th><th>Price</th>
</tr>
<tr>
<td>56. Grilled Chicken Rice</td>
<td>Lemon grass marinated and grilled chicken breast topped with sweet fish sauce</td>
<td>$7.50</td>
</tr>
<tr>
<td>57. Combination Rice Plate</td>
<td>Shredded pork, marinated pork chop and pork pie topped with sweet fish sauce</td>
<td>$8.50</td>
</tr>
<tr>
<td>58. Rice Shrimp Pork Ram</td>
<td>Shrimp and pork simmered in a pepper sauce</td>
<td>$8.95</td>
</tr>
<tr>
<td>59. Lemon Grass Tofu</td>
<td>Chicken or beef slices in a spicy lemon grass marinade</td>
<td>$8.25</td>
</tr>
<tr>
<td>59. Lemon Grass Chicken</td>
<td>Chicken or beef slices in a spicy lemon grass marinade</td>
<td>$8.25</td>
</tr>
<tr>
<td>59. Lemon Grass Beef</td>
<td>Chicken or beef slices in a spicy lemon grass marinade</td>
<td>$8.25</td>
</tr>
<tr>
<td>60. Cubed Beef</td>
<td>Spicy cubed beef sautéed in onion, lemon grass topped with peanuts</td>
<td>$8.95</td>
</tr>
</table>
</body>