-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (106 loc) · 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
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
108
109
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Travel Website</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body data-barba="wrapper">
<header class="nav-header">
<h1><a href="index.html" id="logo">days.</a></h1>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
</div>
</header>
<!-- This stuff will change -->
<main data-barba="container" data-barba-namespace="home">
<section class="mountain slide">
<div class="hero-img">
<img src="./assets/images/forest.png" alt="forset image">
<div class="reveal-img"></div>
</div>
<div class="hero-desc">
<div class="title">
<h2>Freedom at your <span class="mountain-span">fingertips.</span></h2>
<div class="title-swipe t-swipe1"></div>
</div>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Cumque, voluptatibus quidem enim optio
vitae necessitatibus asperiores itaque dolorem voluptatem neque.</p>
<a class="explore mountain-exp">Explore</a>
<div class="reveal-text"></div>
</div>
</section>
<section class="hike slide">
<div class="hero-img">
<img src="./assets/images/hike.png" alt="hike image">
<div class="reveal-img"></div>
</div>
<div class="hero-desc">
<div class="title">
<h2>Freedom at your <span class="hike-span">fingertips.</span></h2>
<div class="title-swipe t-swipe2"></div>
</div>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Cumque, voluptatibus quidem enim optio
vitae necessitatibus asperiores itaque dolorem voluptatem neque.</p>
<a class="explore hike-exp">Explore</a>
<div class="reveal-text"></div>
</div>
</section>
<section class="fashion slide">
<div class="hero-img">
<img src="./assets/images/fashion.png" alt="fashion image">
<div class="reveal-img"></div>
</div>
<div class="hero-desc">
<div class="title">
<h2>Freedom at your <span class="fashion-span">fingertips.</span></h2>
<div class="title-swipe t-swipe3"></div>
</div>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Cumque, voluptatibus quidem enim optio
vitae necessitatibus asperiores itaque dolorem voluptatem neque.</p>
<a href="./fashion/index.html" class="explore fashion-exp">Explore</a>
<div class="reveal-text"></div>
</div>
</section>
</main>
<nav class="nav-bar">
<ul class="nav-links">
<h3>Twitter</h3>
<h3>YouTube</h3>
<h3>Instagram</h3>
</ul>
<div class="contact">
<h2>Stay in touch.</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Suscipit perferendis aut dignissimos laboriosam
debitis mollitia nemo vero ab quia dicta.
</p>
</div>
</nav>
<div class="cursor">
<span class="cursor-text"></span>
</div>
<div class="swipe swipe1"></div>
<div class="swipe swipe2"></div>
<div class="swipe swipe3"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.8/ScrollMagic.min.js"
integrity="sha512-8E3KZoPoZCD+1dgfqhPbejQBnQfBXe8FuwL4z/c8sTrgeDMFEnoyTlH3obB4/fV+6Sg0a0XF+L/6xS4Xx1fUEg=="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.8/plugins/animation.gsap.min.js"
integrity="sha512-5/OHwmQzDSBS0Ous4/hlYoWLHd06/d2r7LdKZQVBXOA6PvOqWVXtdboiLTU7lQTGyVoKVTNkwi0ol4gHGlw5ww=="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.8/plugins/debug.addIndicators.min.js"
integrity="sha512-RvUydNGlqYJapy0t4AH8hDv/It+zKsv4wOQGb+iOnEfa6NnF2fzjXgRy+FDjSpMfC3sjokNUzsfYZaZ8QAwIxg=="
crossorigin="anonymous"></script>
<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="https://unpkg.com/@barba/core"></script>
<script src="assets/js/app.js" async defer></script>
</body>
</html>