-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (74 loc) · 3.54 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="./graphics/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./graphics/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./graphics/favicon/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- --------- Google Font --------- -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&display=swap" rel="stylesheet">
<!-- -------- Aos Animation -------- -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<!-- ---------- Main Css ----------- -->
<link rel="stylesheet" href="./dist/main.css">
<title>Koffe</title>
</head>
<body>
<header >
<div class="logo" data-aos="fade-down" data-aos-delay="50" data-aos-duration="1000">
<img src="./graphics/coffe-logo.png" alt="logo for koffe shop">
</div>
<nav class="koffe__nav" data-aos="fade-down" data-aos-delay="100" data-aos-duration="1500">
<ul class="koffe__ul">
<a href=""><li class="koffe____li">Home</li></a>
<a href=""> <li>Menu</li></a>
<a href=""><li>Rewards</li></a>
<a href=""><li>Gift Cards</li></a>
<a href=""><li>Stores</li></a>
</ul>
</nav>
<button class="btn" data-aos="fade-down" data-aos-delay="150" data-aos-duration="2000" type="submit" name="signin" value="signin" aria-label="Sign in">Sign in</button>
<div class="koffe__menu-btn" data-aos="fade-down" data-aos-delay="100" data-aos-duration="1500">
<!-- <img src="./graphics/coffee.png" alt=""> -->
<lottie-interactive path="./Comp 1.json" interaction="click" id="my-path">
</lottie-interactive>
</div>
</header>
<main>
<section id="hero">
<div class="hero">
<h1 class="hero__title heading">Good coffee</h1>
<h2 class="hero__subtitle heading ">good moods</h2>
</div>
<div class="hero__bg container">
<img src="./graphics/coffe-bg.png" alt=""
data-aos="fade-up"data-aos-anchor-placement="top-bottom">
<!-- data-aos="zoom-in-right" data-aos-delay="300" data-aos-duration="1500"
data-aos="zoom-in-left" data-aos-delay="300" data-aos-duration="1500 -->
<img class="particls left" src="./graphics/coffe-bean-1.png" alt=""
>
<img class="particls right" src="./graphics/cofe-bean-2.png" alt=""
">
</div>
</section>
</main>
<script src="./dist/script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.11.4/gsap.min.js"></script>
<script type="text/javascript" src="https://unpkg.com/lottie-interactive@latest/dist/lottie-interactive.js"></script>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<script src="https://unpkg.com/@lottiefiles/lottie-interactivity@latest/dist/lottie-interactivity.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
AOS.init({
delay: 0.3, // values from 0 to 3000, with step 50ms
duration: 1500, // values from 0 to 3000, with step 50ms
});
</script>
</body>
</html>