-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvietnamese-noodle-soups.html
108 lines (102 loc) · 3.28 KB
/
vietnamese-noodle-soups.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
<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 Noodle Soups</h3>
<table>
<tr>
<th>Name</th><th>Description</th><th>Price</th>
</tr>
<tr>
<td>17. Chicken Glass Noodle</td>
<td>Chicken with clear glass noodle in a chicken broth</td>
<td>$7.50</td>
</tr>
<tr>
<td>18. Vegetable Tofu Pho</td>
<td>Rice noodle with tofu and vegetables in a chicken broth</td>
<td>$7.25</td>
</tr>
<tr>
<td>19. Spicy Beef Soup</td>
<td>Rice noodle with tender beef slices and pork in a spicy beef broth</td>
<td>$8.25</td>
</tr>
<tr>
<td>20. Chicken Soup</td>
<td>Chicken with rice noodle in beef broth</td>
<td>$7.50</td>
</tr>
<tr>
<td>21. Pho Special</td>
<td>Tender beef slices, beef brisket, beefball, and beef tendon with rice noodles in beef broth</td>
<td>$8.50</td>
</tr>
<tr>
<td>22. Rare Pho</td>
<td>Tender beef slices with rice noodle in beef broth</td>
<td>$7.75</td>
</tr>
<tr>
<td>23. Beefball Pho</td>
<td>Beefball with rice noodles in beef broth</td>
<td>$7.75</td>
</tr>
<tr>
<td>24. Well-Done Pho</td>
<td>Beef brisket with rice noodle in beef broth</td>
<td>$8.25</td>
</tr>
<tr>
<td>25. Beefball & Slice Pho</td>
<td>Beefball and tender beef slices with rice noodle in beef broth</td>
<td>$8.25</td>
</tr>
<tr>
<td>26. Tomato Seafood Soup</td>
<td></td>
<td>$8.50</td>
</tr>
<tr>
<td>27. Rice Noodle Combo Soup</td>
<td>Rice noodle with squid, shrimp, crab, and BBQ pork slices in seafood broth</td>
<td>$8.50</td>
</tr>
<tr>
<td>28. Egg Noodle Combo Soup</td>
<td></td>
<td>$8.50</td>
</tr>
<tr>
<td>32. Rice Noodle (Dry)</td>
<td>Shrimp, crab, squid, and barbecue pork in a light brown sauce over rice, noodle no broth</td>
<td>$8.25</td>
</tr>
<tr>
<td>33. Crunchy Egg Noodle</td>
<td>Saiteed crab, beef, chicken, pork, and vegetables over a bed of crunchy crispy egg noodle</td>
<td>$10.50</td>
</tr>
<tr>
<td>34. Bamboo Noodle Soup</td>
<td>Chicken and bamboo slices with rice noodle in a chicken broth</td>
<td>$7.65</td>
</tr>
<tr>
<td>35. Duck Soup</td>
<td>Egg noodle with roasted duck and shitake mushroom in duck broth</td>
<td>$8.50</td>
</tr>
</table>
</body>