-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcakes.html
96 lines (82 loc) · 3.65 KB
/
cakes.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Manana's Cakes</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="photos/favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Sacramento&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&family=Sacramento&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<img class="img-nav" src="photos/maitre_choux.jpg" alt="Eclair">
<img class="img-nav" src="photos/1368.jpg" alt="Eclair">
<img class="img-nav" src="photos/maitre_choux.jpg" alt="Eclair">
<img class="img-nav" src="photos/1368.jpg" alt="Eclair">
<img class="img-nav" src="photos/maitre_choux.jpg" alt="Eclair">
<img class="img-nav" src="photos/1368.jpg" alt="Eclair">
<ul>
<li><a href="index.html">About Us</a> </li>
<li><a href="cakes.html">Our Cakes</a> </li>
<li><a href="services.html">Our Services</a> </li>
</ul>
</nav>
<div class="cakes">
<h1>Our Eclairs</h1>
<hr>
<p>Select from our irresistible range of cakes, ready to be picked up in store, or be delivered fresh to your door! Available throughout Tbilisi, you can be sure you'll always find the perfect eclair for your special occasion. Please note: Our bakery handles milk, eggs, nuts, soya, peanuts and sulphites so there is a chance of cross contamination.</p>
</div>
<table class="table" style="width:80%">
<tr>
<th>Cakes</th>
<th class="thcake"></th>
<th>Description</th>
<th>price</th>
</tr>
<tr>
<td><img src="photos/banana.jpg" alt="cakes"> </td>
<td>Banana custard eclairs</td>
<td style="padding:30px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</td>
<td>5.5Gel</td>
</tr>
<tr>
<td><img src="photos/chocolate.jpg" alt="cakes"> </td>
<td>Chocolate eclairs</td>
<td style="padding:30px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </td>
<td>8Gel</td>
</tr>
<tr>
<td><img src="photos/lemon.jpg" alt="cakes"> </td>
<td>Lemon eclairs</td>
<td style="padding:30px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </td>
<td>10Gel</td>
</tr>
<tr>
<td><img src="photos/ras.jpg" alt="cakes"> </td>
<td>Banana custard eclairs</td>
<td style="padding:30px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </td>
<td>9Gel</td>
</tr>
<tr>
<td><img src="photos/eld.jpg" alt="cakes"> </td>
<td>Banana custard eclairs</td>
<td style="padding:30px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </td>
<td>7Gel</td>
</tr>
<tr>
<td><img src="photos/banana.jpg" alt="cakes"> </td>
<td>Banana custard eclairs</td>
<td style="padding:30px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </td>
<td>5.5Gel</td>
</tr>
</table>
<div class="footer">
<div class="part-footer">
<h1>Manana's Cakes - <span>Address: 5 Nutsubidze Str. Tbilisi, Georgia</span></h1>
</div>
<h3> © 2020 Irakli Tsobekhia</h3>
</div>
</body>
</html>