forked from Velocity-IIITDWD/Task-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Heebo:wght@500;700&family=Lobster&display=swap"
rel="stylesheet"
/>
<title>Slide Animation</title>
</head>
<body>
<main>
<section class="landing">
<nav>
<h1 id="logo">Afloat</h1>
<ul class="nav-links">
<li>Home</li>
<li>Contact</li>
<li>About</li>
</ul>
</nav>
<h2 class="big-text">Stay Afloat</h2>
</section>
</main>
<div class="intro">
<div class="intro-text">
<h1 class="hide">
<span class="text">Creating inovation</span>
</h1>
<h1 class="hide">
<span class="text">For Everyday</span>
</h1>
<h1 class="hide">
<span class="text">people.</span>
</h1>
</div>
</div>
<div class="slider"></div>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.5.1/gsap.min.js"
integrity="sha512-IQLehpLoVS4fNzl7IfH8Iowfm5+RiMGtHykgZJl9AWMgqx0AmJ6cRWcB+GaGVtIsnC4voMfm8f2vwtY+6oPjpQ=="
crossorigin="anonymous"
></script>
<script src="./app.js"></script>
</body>
</html>