-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvietnamese-stir-fry.html
44 lines (37 loc) · 1.05 KB
/
vietnamese-stir-fry.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
<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 Stir Fried</h3>
<table>
<tr>
<th>Name</th><th>Description</th><th>Price</th>
</tr>
<tr>
<td>36. Pork & Bean Sprout</td>
<td>Sautéed bean sprout with pork slices and assorted vegetables</td>
<td>$7.50</td>
</tr>
<tr>
<td>37. Beef & Pea Pod</td>
<td>Sautéed beef with pea pod and tomato in a brown oyster fish sauce</td>
<td>$9.25</td>
</tr>
<tr>
<td>38. Vegetable Deluxe</td>
<td>Vegetable with pineapple sautéed in a white fish sauce</td>
<td>$7.50</td>
</tr>
</table>
</body>