-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
180 lines (162 loc) · 6.68 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!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="stylesheet" href="style.css">
<title>MNTN</title>
</head>
<body>
<header id="head">
<div class="nav">
<div class="logo">
<p>M</p>
<p>N</p>
<p>T</p>
<p>N</p>
</div>
<div class="nav-items">
<a href="#">Equipments</a>
<a href="#">About us</a>
<a href="#">Blog</a>
</div>
<div class="account">
<a href="#">
<img src="Assets/account.png" draggable="false" alt="person">
<p>Account</p>
</a>
</div>
</div>
<div class="hero-text">
<div class="socials">
<a href="#"><img src="Assets/instagram.png" alt="Instagram Logo"></a>
<a href="#"><img src="Assets/twitter.png" alt="Twitter Logo"></a>
</div>
<div class="content">
<div class="tagline">
<div class="line"></div>
<p class="headline">A Hiking Guide</p>
</div>
<h1>Be prepared for the Mountains and beyond!</h1>
<div class="scroll">
<a href="#01">
<p>scroll down</p><img src="Assets/arrow-down.png" class="arrow-down" alt="Arrow down">
</a>
</div>
</div>
<div class="slider">
<div class="title">
<a href="#head">Start</a>
<a href="#01">01</a>
<a href="#02">02</a>
<a href="#03">03</a>
</div>
<div class="highlights">
<div class="highlight-indicator"></div>
<div class="highlight"></div>
</div>
</div>
</div>
</header>
<div class="parallax"></div>
<div class="parallax2"></div>
<div class="parallax3"></div>
<main>
<div class="section" id="01">
<h1>01</h1>
<div class="content">
<div class="tagline">
<div class="line"></div>
<p class="headline">Get Started</p>
</div>
<h2>What level of hiker are you?</h2>
<p class="details">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>
<div class="more">
<a href="#">
<p>read more</p><img src="Assets/arrow.svg" draggable="false" class="arrow" alt="arrow">
</a>
</div>
</div>
<img src="Assets/section1.png" draggable="false" alt="Hike">
</div>
<div class="section-reverse" id="02">
<img src="Assets/section2.png" draggable="false" alt="Hike">
<h1>02</h1>
<div class="content">
<div class="tagline">
<div class="line"></div>
<p class="headline">Hiking Essentials</p>
</div>
<h2>Picking the right Hiking Gear!</h2>
<p class="details">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>
<div class="more">
<a href="#">
<p>read more</p><img src="Assets/arrow.svg" draggable="false" class="arrow" alt="arrow">
</a>
</div>
</div>
</div>
<div class="section" id="03">
<h1>03</h1>
<div class="content">
<div class="tagline">
<div class="line"></div>
<p class="headline">where you go is the key</p>
</div>
<h2>Understand Your Map & Timing</h2>
<p class="details">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>
<div class="more">
<a href="#">
<p>read more</p><img src="Assets/arrow.svg" draggable="false" class="arrow" alt="arrow">
</a>
</div>
</div>
<img src="Assets/section3.png" draggable="false" alt="Hike">
</div>
<div class="footer">
<div class="main">
<div class="logo">
<p>M</p>
<p>N</p>
<p>T</p>
<p>N</p>
</div>
<p>Get out there & discover your next slope, mountain & destination!</p>
</div>
<div class="links">
<h4>More on The Blog</h4>
<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">
<h4>More on MNTN</h4>
<a href="#">The Team</a>
<a href="#">Jobs</a>
<a href="#">Press</a>
</div>
</div>
<div class="copyrights">
Copyright 2022 MNTN, Inc. Terms & Privacy
</div>
</main>
</body>
</html>