-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (79 loc) · 3.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="Author" content="Will Walton">
<title>Yours Juicing for You</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,900;1,900&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-ixon" href="assets/Mo Logo.png">
</head>
<body>
<nav>
<ul>
<li><a href="ingredients.html">Ingredients</a></li>
<li></li>
</ul>
</nav>
<div class="header">
<h1 class="title"><center>YOURS</center></h1>
<p><center>Juicing For You</center></p>
</div>
<button class="mode-switch" title="Switch Theme">
<svg class="moon" fill="none" stroke="currentColor" stroke-linecap="round"
stroke-linejoin="round" stroke-width="2" width="36" height="36" viewBox="0 0 24 24">
<defs></defs>
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z"></path>
</svg>
</button>
<div class="body">
<div class="container">
<div class="box">
<h2 class="name">Flushed</h2>
<a href="https://buy.stripe.com/3cs4im7oDftA8oM8ww" class="order">12 oz</a>
<a href="https://buy.stripe.com/fZe2ae5gv2GOdJ68wB" class="order second-order">8 oz</a>
<img class="product" src="assets/green juice product pic.png" alt="">
<div class="circle"></div>
<div class="ingredients">
<p></p>
</div>
</div>
<div class="box">
<h2 class="name">Beet It!</h2>
<a href="https://buy.stripe.com/28o4im8sHepw9sQaEF" class="order">12 oz</a>
<a href="https://buy.stripe.com/4gw6qu38n8188oM6os" class="order second-order">8 oz</a>
<div class="circle"></div>
<img class="product" src="assets/beet juice product pic.png" alt="">
</div>
<div class="box">
<h2 class="name">Vita C Me</h2>
<a href="https://buy.stripe.com/cN216agZd0yG9sQ6oq" class="order">12 oz</a>
<a href="https://buy.stripe.com/cN23eiaAP95cawU5kn" class="order second-order">8 oz</a>
<div class="circle"></div>
<img class="product" src="assets/orange juice product pic.png" alt="">
</div>
<div class="box">
<h2 class="name">Citrust Me</h2>
<a href="https://buy.stripe.com/eVadSWcIX5T020o14b" class="order">12 oz</a>
<a href="https://buy.stripe.com/4gw3eicIXepwawUaEK" class="order second-order">8 oz</a>
<div class="circle"></div>
<img class="product" src="assets/pineapple juice product pic.png" alt="">
</div>
</div>
</div>
<footer class="header">
<p><center>Copyright © Morgan Anderson</center></p>
</footer>
<script src="script.js"></script>
<script src="vanilla-tilt.min.js"></script>
<script>
VanillaTilt.init(document.querySelectorAll(".box"), {
max: 15,
speed: 300,
easing: "cubic-bezier(.03,.98,.52,.99)",
scale: 1.05,
});
</script>
</body>
</html>