forked from hack4impact-calpoly/bootcamp-grocery-prep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (86 loc) · 2.4 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
80
81
82
83
84
85
86
87
88
89
90
<html>
<head>
<title>Stick's Tea House - Home</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<h1>Stick's Cafe</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About Stick</a>
<a href="recipes/surpriseMe.html">Surprise Me</a>
</nav>
</header>
<main>
<div class="topImg">
<img src="images/home.jpg">
</div>
<h2>Welcome to Stick's Cafe</h2>
<p>Lets enjoy a nice drink together~!</p>
<h2>Menu</h2>
<section>
<h3>Fruity Smothies</h3>
<div class="items">
<img src="images/fruitySmothies.jpg">
<div class="recipeLinks">
<a href="recipes/mangoSmothie.html">Mango Smothie</a>
<br>
<a href="recipes/strawberryBananaSmothie.html">Strawberry Bananna Smothie</a>
<br>
<a href="recipes/raspberrySmothie.html">Raspberry Smothie</a>
</div>
</div>
<h3>Hot Drinks</h3>
<div class="items">
<img src="images/hotDrinks.jpg">
<div class ="recipeLinks">
<a href="recipes/hotChocolate.html">Hot Chocolate</a>
<br>
<a href="recipes/milk.html">Milk</a>
<br>
</div>
</div>
<h3>Coffee</h3>
<div class="items">
<img src="images/diffCoffee.jpg">
<div class ="recipeLinks">
<a href="recipes/coffee.html">Coffee</a>
<br>
<a href="recipes/americano.html">Americano</a>
<br>
<a href="recipes/cappuccino.html">Cappuccino</a>
<br>
<a href="recipes/latte.html">Latte</a>
<br>
<a href="recipes/mocha.html">Mocha</a>
<br>
<a href="recipes/caramelLatte.html">Caramel Latte</a>
<br>
<a href="recipes/espresso.html">Espresso</a>
<br>
<a href="recipes/frappucino.html">Frappucino</a>
</div>
</div>
<h3>Fresh Tea</h3>
<div class="items">
<img src="images/freshTea.jpg">
<div class ="recipeLinks">
<a href="recipes/blackTea.html">Black Tea</a>
<br>
<a href="recipes/jasmineGreenTea.html">Jasmine Green Tea</a>
<br>
<a href="recipes/roseBlackTea.html">Rose Black Tea</a>
<br>
<a href="recipes/roseGreenTea.html">Rose Green Tea</a>
<br>
<a href="recipes/mangoBlackTea.html">Mango Black Tea</a>
<br>
<a href="recipes/mangoGreenTea.html">Mango Green Tea</a>
</div>
</div>
</section>
</main>
</body>
</html>