-
Notifications
You must be signed in to change notification settings - Fork 0
/
lemon.html
36 lines (36 loc) · 940 Bytes
/
lemon.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
<!DOCTYPE html>
<html>
<head>
<title>Little Lemon</title>
<style>
table, th, td{
border: 1px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>
<h1>Our Menu</h1>
<h2>Falafel</h2>
<p>Chicken, herbs and spices.</p>
<img src="image/food.jpg" width="240" height="130" alt="food">
<h2>Tea</h2>
<p>Black tea, lemon tea and milk tea</p>
<img src="image/tea.jpg" width="240" height="130" alt="tea">
<a href="location.html">Location</a>
<table>
<tr>
<th>Dish</th>
<th>Price</th>
</tr>
<tr>
<td>Falafel</td>
<td>100/=</td>
</tr>
<tr>
<td>Tea</td>
<td>70/=</td>
</tr>
</table>
</body>
</html>