-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (79 loc) · 2.35 KB
/
index.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
<!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="style.css" rel="stylesheet" />
</head>
<body>
<div class="menu">
<header>
<h1>MOCHA HOUSE</h1>
<p class="established">Est. 2022</p>
</header>
<hr />
<main>
<section>
<h2>Coffee Delights</h2>
<img
src="https://cdn.freecodecamp.org/curriculum/css-cafe/coffee.jpg"
alt="coffee icon"
/>
<article class="item">
<p class="flavor">Classic Cappuccino</p>
<p class="price">150</p>
</article>
<article class="item">
<p class="flavor">Caramel Macchiato</p>
<p class="price">275</p>
</article>
<article class="item">
<p class="flavor">Filter Coffee</p>
<p class="price">150</p>
</article>
<article class="item">
<p class="flavor">Hazelnut</p>
<p class="price">300</p>
</article>
<article class="item">
<p class="flavor">Mocha</p>
<p class="price">350</p>
</article>
</section>
<section>
<h2>Snack Central</h2>
<img
src="https://cdn.freecodecamp.org/curriculum/css-cafe/pie.jpg"
alt="pie icon"
/>
<article class="item">
<p class="dessert">Cookies</p>
<p class="price">50</p>
</article>
<article class="item">
<p class="dessert">Donut</p>
<p class="price">120</p>
</article>
<article class="item">
<p class="dessert">Cheesecake</p>
<p class="price">300</p>
</article>
<article class="item">
<p class="dessert">Garlic Bread</p>
<p class="price">80</p>
</article>
</section>
</main>
<hr class="bottom-line" />
<footer>
<p>
<a href="https://www.google.com" target="_blank"
>Visit our website</a
>
</p>
<p class="address">'Copyright © 2022'</p>
</footer>
</div>
</body>
</html>