-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
129 lines (125 loc) · 6.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./css/default.css">
<link rel="stylesheet" href="./css/index.css">
</head>
<body class="scrollbar">
<div class="wrapper">
<div class="content">
<div class="first-screen">
<header>
<div class="header-container">
<h2 class="logo">MNTN</h2>
<div class="header__links">
<a href="#" class="header__link">Equipment</a>
<a href="#" class="header__link">About us</a>
<a href="#" class="header__link">Blog</a>
</div>
<div class="account">
<div class="account__img"></div>
<a class="account__text" href="#">Account</a>
</div>
</div>
</header>
<section class="index">
<div class="header-container">
<div class="index__follow">
<p>Follow us</p>
<a href="#" class="index__icon instagramm"></a>
<a href="#" class="index__icon twitter"></a>
</div>
<div class="index__main">
<h2>A Hiking guide</h2>
<h1>Be prepared for the Mountains and beyond!</h1>
<p>scroll down</p>
</div>
<div class="index__nav">
<a href="#" id="nav--active">Start</a>
<a id="s1btn" >01</a>
<a id="s2btn" >02</a>
<a id="s3btn" >03</a>
</div>
</div>
</section>
<div class="layers">
<div class="layer1 layer" >
</div>
<div class="layer2 layer">
</div>
<div class="layer3 layer">
</div>
<div class="first-secreen-upper"></div>
<div class="first-screen-end"></div>
</div>
</div>
<main>
<div class="container" >
<section id="s1">
<div class="text">
<h3 class="one">GEt Started</h3>
<h2>What level of hiker are you?</h2>
<p>Determining what level of hiker you are can be an important tool when planning future hikes. This hiking level guide will help you plan hikes according to different hike ratings set by various websites like All Trails and Modern Hiker. What type of hiker are you – novice, moderate, advanced moderate, expert, or expert backpacker? </p>
<a href="#">read more</a>
</div>
<div class="section__img img1">
</div>
</section>
<section id="s2">
<div class="text">
<h3 class="two">Hiking Essentials</h3>
<h2>Picking the right Hiking Gear!</h2>
<p>The nice thing about beginning hiking is that you don’t really need any special gear, you can probably get away with things you already have.
Let’s start with clothing. A typical mistake hiking beginners make is wearing jeans and regular clothes, which will get heavy and chafe wif they get sweaty or wet.</p>
<a href="#">read more</a>
</div>
<div class="section__img img2">
</div>
</section>
<section id="s3">
<div class="text">
<h3 class="thre">where you go is the key</h3>
<h2>Understand Your Map & Timing</h2>
<p>To start, print out the hiking guide and map. If it’s raining, throw them in a Zip-Lock bag. Read over the guide, study the map, and have a good idea of what to expect. I like to know what my next landmark is as I hike. For example, I’ll read the guide and know that say, in a mile, I make a right turn at the junction..</p>
<a href="#">read more</a>
</div>
<div class="section__img img3">
</div>
</section>
<footer>
<div class="footer__info">
<h2>MNTN</h2>
<p>Get out there & discover your next slope, mountain & destination!</p>
<span>Copyright 2019 MNTN, Inc. Terms & Privacy</span>
</div>
<div class="footer__links">
<div class="links__left footer__links-wrap">
<h3>More on The Blog</h3>
<a href="#">About MNTN</a>
<a href="#">Contributors & Writers</a>
<a href="#">Write For Us</a>
<a href="#">Contact Us</a>
<a href="#">Privacy Policy</a>
</div>
<div class="links__right footer__links-wrap">
<h3>More on MNTN</h3>
<a href="#">The Team</a>
<a href="#">Jobs</a>
<a href="#">Press</a>
</div>
</div>
</footer>
</div>
</main>
</div>
</div>
</body>
<script src="./libs/gsap/gsap.min.js"></script>
<script src="./libs/gsap/ScrollSmoother.min.js"></script>
<script src="./libs/gsap/ScrollTrigger.min.js"></script>
<script src="./libs/gsap/ScrollToPlugin.min.js"></script>
<script src="./scripts/parallax.js"></script>
</html>