-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCAFE.html
More file actions
127 lines (117 loc) · 5 KB
/
CAFE.html
File metadata and controls
127 lines (117 loc) · 5 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CAFE MENU</title>
<link href="CAFE.css" rel="stylesheet"/>
</head>
<body>
<main>
<div class="container">
<div class="rounded-square1">
<h1>Pastries</h1>
<p class="motto">Life is short, eat dessert first!</p>
<hr>
<img class="icon" src="bread.png" alt="coffee icon">
<section>
<h2>Bread</h2>
<article class="item">
<p class="flavor">BAGUETTE</p><p class="price">120.00</p>
</article>
<article class="item">
<p class="flavor">BAGEL</p><p class="price">120.00</p>
</article>
<article class="item">
<p class="flavor">ENGLISH MUFFIN</p><p class="price">110.00</p>
</article>
</section>
<section>
<h2>Pie</h2>
<article class="item">
<p class="flavor">PUMPKIN PIE</p><p class="price">350.00</p>
</article>
<article class="item">
<p class="flavor">BLUE BERRY PIE</p><p class="price">405.00</p>
</article>
<article class="item">
<p class="flavor">RASPBERRY PIE</p><p class="price">360.00</p>
</article>
</section>
<hr>
<footer>
<p><a href="https://www.tiktok.com/foryou?lang=en" target="_blank">Order Now!</a></p>
</footer>
</div>
<div class="rounded-square2">
<h1>Drinks</h1>
<p class="motto">Drinks from heaven!</p>
<hr>
<img class="icon" src="coffee-cup.png" alt="coffee icon">
<section>
<h2>Hot</h2>
<article class="item">
<p class="flavor">BARAKO</p><p class="price">100.00</p>
</article>
<article class="item">
<p class="flavor">ESPRESSO</p><p class="price">100.00</p>
</article>
<article class="item">
<p class="flavor">WHITE MOCHA</p><p class="price">110.00</p>
</article>
</section>
<section>
<h2>Cold</h2>
<article class="item">
<p class="flavor">FRAPPUCINO</p><p class="price">100.00</p>
</article>
<article class="item">
<p class="flavor">MATCHA</p><p class="price">105.00</p>
</article>
<article class="item">
<p class="flavor">ICED AMERICANO</p><p class="price">100.00</p>
</article>
</section>
<hr>
<footer>
<p><a href="https://www.tiktok.com/foryou?lang=en" target="_blank">Order Now!</a></p>
</footer>
</div>
<div class="rounded-square3">
<h1>Snacks</h1>
<p class="motto">Snacks and bites for delights</p>
<hr>
<img class="icon" src="snack.png" alt="coffee icon">
<section>
<h2>FILIPINO</h2>
<article class="item">
<p class="flavor">LUMPIANG SHANGHAI</p><p class="price">200.00</p>
</article>
<article class="item">
<p class="flavor">MANI</p><p class="price">80.00</p>
</article>
<article class="item">
<p class="flavor">TURON</p><p class="price">110.00</p>
</article>
</section>
<section>
<h2>MEXICAN</h2>
<article class="item">
<p class="flavor">NACHOS</p><p class="price">100.00</p>
</article>
<article class="item">
<p class="flavor">BURRITO</p><p class="price">200.00</p>
</article>
<article class="item">
<p class="flavor">TAMALES</p><p class="price">95.00</p>
</article>
</section>
<hr>
<footer>
<p><a href="https://www.tiktok.com/foryou?lang=en" target="_blank">Order Now!</a></p>
</footer>
</div>
</div>
</main>
</body>
</html>