-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (69 loc) · 2.78 KB
/
Copy pathindex.html
File metadata and controls
77 lines (69 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Camper Cafe Menu</title>
<meta name="description" content="Camper Cafe menu featuring coffee and desserts. A responsive, beginner-friendly web project." />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@600;700&display=swap" rel="stylesheet">
<!-- Styles -->
<link href="styles.css" rel="stylesheet"/>
<link rel="icon" href="fevi.png">
</head>
<body>
<div class="menu" role="main">
<header class="menu-header">
<h1>CAMPER CAFE</h1>
<p class="established">Est. 2020</p>
</header>
<hr aria-hidden="true">
<main>
<section aria-labelledby="coffee-heading">
<h2 id="coffee-heading">Coffee</h2>
<img src="https://cdn.freecodecamp.org/curriculum/css-cafe/coffee.jpg" alt="Coffee cup icon"/>
<article class="item">
<p class="flavor">French Vanilla</p><p class="price">$3.00</p>
</article>
<article class="item">
<p class="flavor">Caramel Macchiato</p><p class="price">$3.75</p>
</article>
<article class="item">
<p class="flavor">Pumpkin Spice</p><p class="price">$3.50</p>
</article>
<article class="item">
<p class="flavor">Hazelnut</p><p class="price">$4.00</p>
</article>
<article class="item">
<p class="flavor">Mocha</p><p class="price">$4.50</p>
</article>
</section>
<section aria-labelledby="desserts-heading">
<h2 id="desserts-heading">Desserts</h2>
<img src="https://cdn.freecodecamp.org/curriculum/css-cafe/pie.jpg" alt="Slice of pie icon"/>
<article class="item">
<p class="dessert">Donut</p><p class="price">$1.50</p>
</article>
<article class="item">
<p class="dessert">Cherry Pie</p><p class="price">$2.75</p>
</article>
<article class="item">
<p class="dessert">Cheesecake</p><p class="price">$3.00</p>
</article>
<article class="item">
<p class="dessert">Cinnamon Roll</p><p class="price">$2.50</p>
</article>
</section>
</main>
<hr class="bottom-line" aria-hidden="true">
<footer>
<p>
<a href="https://www.freecodecamp.org" target="_blank" rel="noopener noreferrer">Visit our website</a>
</p>
<p class="address">123 Free Code Camp Drive</p>
<p class="hours">Open daily 7:00 AM – 7:00 PM</p>
</footer>
</div>
</body>
</html>