-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
287 lines (287 loc) · 11.3 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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Hike Website" />
<meta name="author" content="Thawan Silva" />
<link rel="stylesheet" href="src/index.css" />
<title>HGGF - Hiking Guide</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body class="text-yellow-50 bg-bg">
<div
class="relative min-h-[105vh] bg-gray-400 bg-blend-multiply bg-cover bg-center bg-[url('https://images.pexels.com/photos/914128/pexels-photo-914128.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1')]"
>
<div class="container mx-auto px-10 pt-10">
<header class="flex justify-between items-center">
<a href="#" class="font-Merriweather font-light text-3xl">HGGF</a>
<nav class="w-2/5 hidden md:block text-sm font-semibold lg:w-3/12">
<ul class="flex justify-between">
<li>
<a href="#" class="hover:text-yellow-500 ease-out duration-300"
>Equipament</a
>
</li>
<li>
<a href="#" class="hover:text-yellow-500 ease-out duration-300"
>About Us</a
>
</li>
<li>
<a href="#" class="hover:text-yellow-500 ease-out duration-300"
>Blog</a
>
</li>
</ul>
</nav>
<a href="#" class="hover:text-yellow-500 ease-out duration-300">
<i class="fa-regular fa-circle-user text-xl"></i>
<p class="ml-2 inline-block">Account</p></a
>
</header>
<section class="mt-14 lg:w-3/5 lg:mx-auto">
<div class="w-2/3 flex items-center">
<div class="w-2/12 h-[2px] bg-yellow-500 mr-3"></div>
<p class="text-yellow-200 tracking-[0.25em] uppercase">
A Hiking Guide
</p>
</div>
<h1
class="my-4 font-Merriweather text-5xl lg:text-6xl leading-normal lg:leading-relaxed"
>
Be Prepared For The Mountains And Beyond!
</h1>
<a href="#articles" id="scrool" class="hover:text-yellow-200">
Scrool down <i class="fa-solid fa-arrow-down ml-3"></i>
</a>
</section>
</div>
<div
class="absolute bottom-0 w-full h-[30vh] bg-gradient-to-t from-bg to-transparent"
></div>
</div>
<main id="articles">
<article class="my-10">
<div class="container mx-auto px-10 pt-10">
<div class="lg:flex flex-row-reverse justify-around">
<div>
<img
loading="lazy"
class="w-full h-[70vh] object-cover object-bottom lg:h-[90vh]"
src="https://images.pexels.com/photos/917510/pexels-photo-917510.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt="Group of people hiking"
title="Group of people hiking"
/>
</div>
<div class="mt-6 lg:w-7/12">
<div class="w-2/3 flex items-center">
<div class="w-2/12 h-[2px] bg-yellow-500 mr-3"></div>
<p class="text-yellow-200 tracking-[0.25em] uppercase">
Get Started
</p>
</div>
<div>
<h2
class="font-Merriweather text-4xl leading-normal my-2 md:text-5xl lg:text-6xl lg:my-6 lg:leading-normal"
>
What level of hiker are you?
</h2>
<p class="my-4 leading-loose font-light">
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="#"
class="inline-block hover:translate-x-2 hover:text-yellow-500 ease-out duration-300"
>read more <i class="fa-solid fa-arrow-right ml-2"></i
></a>
</div>
</div>
</div>
</div>
</article>
<article class="my-10">
<div class="container mx-auto px-10 pt-10">
<div class="lg:flex justify-around">
<div class="">
<img
loading="lazy"
class="w-full h-[70vh] object-cover object-center lg:h-[90vh]"
src="https://images.pexels.com/photos/8866002/pexels-photo-8866002.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt="Couple making hike"
title="Couple making hike"
/>
</div>
<div class="mt-6 lg:w-6/12">
<div class="w-2/3 flex items-center">
<div class="w-2/12 h-[2px] bg-yellow-500 mr-3"></div>
<p class="text-yellow-200 tracking-[0.25em] uppercase">
Hiking Essentials
</p>
</div>
<div>
<h2
class="font-Merriweather text-4xl leading-normal my-2 md:text-5xl lg:text-6xl lg:my-6 lg:leading-normal"
>
Picking the right Hiking Gear!
</h2>
<p class="my-4 leading-loose font-light">
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="#"
class="inline-block hover:translate-x-2 hover:text-yellow-500 ease-out duration-300"
>read more <i class="fa-solid fa-arrow-right ml-2"></i
></a>
</div>
</div>
</div>
</div>
</article>
<article class="my-10">
<div class="container mx-auto px-10 pt-10">
<div class="lg:flex flex-row-reverse justify-around">
<div>
<img
loading="lazy"
class="w-full h-[70vh] object-cover object-bottom lg:h-[90vh]"
src="https://images.pexels.com/photos/10431339/pexels-photo-10431339.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1"
alt="Couple hiking using a map"
title="Couple hiking using a map"
/>
</div>
<div class="mt-6 lg:w-7/12">
<div class="w-2/3 flex items-center">
<div class="w-2/12 h-[2px] bg-yellow-500 mr-3"></div>
<p class="text-yellow-200 tracking-[0.25em] uppercase">
Where you go is the key
</p>
</div>
<div>
<h2
class="font-Merriweather text-4xl leading-normal my-2 md:text-5xl lg:text-6xl lg:my-6 lg:leading-normal"
>
Undestand Your Map & Timing
</h2>
<p class="my-4 leading-loose font-light">
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="#"
class="inline-block hover:translate-x-2 hover:text-yellow-500 ease-out duration-300"
>read more <i class="fa-solid fa-arrow-right ml-2"></i
></a>
</div>
</div>
</div>
</div>
</article>
</main>
<footer class="min-h-[70vh]">
<div class="container mx-auto px-10 pt-10">
<div class="lg:flex justify-between">
<div class="mb-6">
<a href="#" class="font-Merriweather font-light text-3xl">HGGF</a>
<p class="my-5 md:w-8/12">
Get out there & discover your next slope, mountain & destination!
</p>
<p class="text-gray-400">
Copyright 2020 HGGF, Inc. Terms & Privacy
</p>
</div>
<div>
<h2 class="text-2xl font-bold text-yellow-300">More on The Blog</h2>
<nav>
<ul>
<li class="my-2">
<a
class="hover:text-yellow-500 ease-out duration-300"
href="#"
>About HGGF</a
>
</li>
<li class="my-2">
<a
class="hover:text-yellow-500 ease-out duration-300"
href="#"
>Contributors & Writers</a
>
</li>
<li class="my-2">
<a
class="hover:text-yellow-500 ease-out duration-300"
href="#"
>Write For Us</a
>
</li>
<li class="my-2">
<a
class="hover:text-yellow-500 ease-out duration-300"
href="#"
>Contact Us</a
>
</li>
<li class="my-2">
<a
class="hover:text-yellow-500 ease-out duration-300"
href="#"
>Privacy Policy</a
>
</li>
</ul>
</nav>
</div>
<div class="hidden lg:block">
<h2 class="text-2xl font-bold text-yellow-300">More on HGGF</h2>
<nav>
<ul>
<li class="my-2">
<a
class="hover:text-yellow-500 ease-out duration-300"
href="#"
>The Team</a
>
</li>
<li class="my-2">
<a
class="hover:text-yellow-500 ease-out duration-300"
href="#"
>Jobs</a
>
</li>
<li class="my-2">
<a
class="hover:text-yellow-500 ease-out duration-300"
href="#"
>Press</a
>
</li>
</ul>
</nav>
</div>
</div>
</div>
</footer>
<script src="./src/index.js"></script>
</body>
</html>