-
Notifications
You must be signed in to change notification settings - Fork 0
/
dessert.html
44 lines (42 loc) · 1.69 KB
/
dessert.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
<!DOCTYPE html>
<html>
<head>
<title>Restaurant Menu | Dessert</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="fontAwesome/css/all.css">
</head>
<body class="body-meals">
<div class="header">
<a href="index.html">
<i class="fas fa-long-arrow-alt-left"></i>
</a>
<img src="images/logo-text.png"/>
</div>
<div class="meals-lists">
<a href="strawberry-cheesecake.html">
<div class="meals-lists-item">
<h1>Strawberry Cheesecake Tarts<i class="fas fa-long-arrow-alt-right"></i></h1>
<p> With the ginger biscuit base and creamy lemon filling</p>
</div>
</a>
<a href="sugarplum-turkish.html">
<div class="meals-lists-item">
<h1>Sugarplum Turkish Delight<i class="fas fa-long-arrow-alt-right"></i></h1>
<p>With sweetened plums and dusted with icing sugar</p>
</div>
</a>
<a href="chimney-cake.html">
<div class="meals-lists-item">
<h1>Chimney Cake<i class="fas fa-long-arrow-alt-right"></i></h1>
<p>This chimney cake has a crisp exterior covered in walnut sugar,</p>
</div>
</a>
<a href="pistachio-and-marzipan.html">
<div class="meals-lists-item">
<h1>Pistachio and Marzipan logs<i class="fas fa-long-arrow-alt-right"></i></h1>
<p>A super easy idea for an edible Christmas gift, </p>
</div>
</a>
</div>
</body>
</html>