-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
132 lines (132 loc) · 4.92 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Abril+Fatface&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Travel Website</title>
</head>
<body data-barba="wrapper">
<header class="nav-header">
<h1><a href="./index.html" id="logo">SkyTrails.</a></h1>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
</div>
</header>
<main data-barba="container" data-barba-namespace="home">
<section class="mountain slide">
<div class="hero-img">
<img src="./assets/forest.png" alt="mountain-camp" />
<div class="revel-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>
Join us for an unforgettable adventure at Mountain Camp! Escape to the breathtaking
peaks, where thrilling hikes
</p>
<a href="#" class="explore mountain-exp">Explore</a>
<div class="revel-text"></div>
</div>
</section>
<section class="hike slide">
<div class="hero-img">
<img src="./assets/hike.png" alt="hike-camp" />
<div class="revel-img"></div>
</div>
<div class="hero-desc">
<div class="title">
<h2>An Epic Hiking <span class="hike-span">Adventure. </span></h2>
<div class="title-swipe t-swipe2"></div>
</div>
<p>
Embark on an exhilarating journey with Path to Peaks! Conquer scenic trails, where
awe-inspiring views
</p>
<a href="#" class="explore hike-exp">Explore</a>
<div class="revel-text"></div>
</div>
</section>
<section class="fashion slide">
<div class="hero-img">
<img src="./assets/fashion.png" alt="fasion-camp" />
<div class="revel-img"></div>
</div>
<div class="hero-desc">
<div class="title">
<h2>A Journey of <span class="fashion-span">Style. </span></h2>
<div class="title-swipe t-swipe3"></div>
</div>
<p>
Embark on an exhilarating journey with Path to Peaks! Conquer scenic trails, where
awe-inspiring views
</p>
<a href="./pages/fashion.html" class="explore fashion">Explore</a>
<div class="revel-text"></div>
</div>
</section>
</main>
<nav class="nav-bar">
<ul class="nav-links">
<h3>Twitter</h3>
<h3>LinkedIn</h3>
<h3>Instgram</h3>
</ul>
<div class="contact">
<h2>Stay In Touch.</h2>
<p>
For inquiries or assistance, please reach out to us at [your email address] or fill out
the contact form on our website. We’re here to help!
</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>
<!-- barba.js -->
<script src="https://unpkg.com/@barba/core"></script>
<!-- scroll magic script -->
<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"
referrerpolicy="no-referrer"
></script>
<!-- debug Indicator -->
<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"
referrerpolicy="no-referrer"
></script>
<!-- GSAP Plugin ANIMATION -->
<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"
referrerpolicy="no-referrer"
></script>
<!-- GSAP LIBRARY -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"
integrity="sha512-7eHRwcbYkK4d9g/6tD/mhkf++eoTHwpNM9woBxtPUBWm67zeAfFC+HrdoE2GanKeocly/VxeLvIqwvCdk7qScg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<!-- script file -->
<script src="app.js"></script>
</body>
</html>