-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JUVA Juice</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="homePageStyles.css"> <!--Styles for buttons-->
</head>
<body>
<div class="container">
<div class="main">
<div class="header">
<img style="height:180px;width:auto;margin-top: 4%;margin-bottom: 7%;" src="./img/JUVA_LogoWithTitle.png">
</div>
<div>
<button onclick="window.location.href='predesigned.html';" class="button-20" role="button">
Predesigned
<img class="juiceIcons" src="./img/RedDrinkProfileforButtons.png">
</button>
</div>
<div>
<button onclick="window.location.href='specialized.html';" class="button-20" role="button">
Specialized
<img class="juiceIcons" src="./img/OrangeDrinkProfileforButtons.png">
</button>
</div>
<div>
<button onclick="window.location.href='custom.html';" class="button-20" role="button">
Custom
<img class="juiceIcons" src="./img/GreenDrinkProfileforButtons.png">
</button>
</div>
</div>
</div>
</body>
</html>