-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvietnamese_appetizers.html
65 lines (57 loc) · 1.98 KB
/
vietnamese_appetizers.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
<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 Appetizers</h3>
<table>
<tr>
<th>Name</th><th>Description</th><th>Price</th>
</tr>
<tr>
<td>Spring Egg Rolls (2)</td>
<td>Pork, carrot and bean thread noodles rolled in a crispy fried roll</td>
<td>$3.50</td>
</tr>
<tr>
<td>Goi Rolls (2)</td>
<td>Steamed shrimp and pork with fresh vegetables and rice noodles rolled in rice paper, served with a side of plum sauce topped with roasted peanuts</td>
<td>$3.50</td>
</tr>
<tr>
<td>Tofu Goi Roll (2)</td>
<td>Tofu with fresh vegetables and rice noodles rolled in rice paper served with a side of plum sauce topped with roasted peanuts</td>
<td>$3.25</td>
</tr>
<tr>
<td>Minced Pork Rolls (2)</td>
<td>Shredded pork and fresh lettuce rolled in rice paper served with a side of sweet fish sauce</td>
<td>$3.50</td>
</tr>
<tr>
<td>Sautéed Beef Roll (2)</td>
<td>Sautéed beef with fresh vegetables rolled in rice paper served with a side of sweet fish sauce</td>
<td>$3.50</td>
</tr>
<tr>
<td>Steamed Rice Rolls</td>
<td>Steam rice flour crepes filled with sautéed pork and onion, over a bed of fresh vegetables topped with pork cake and sweet fish sauce</td>
<td>$7.75</td>
</tr>
<tr>
<td>Rare Lemon Beef Salad</td>
<td></td>
<td>$8.25</td>
</tr>
</table>
</body>