-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (96 loc) · 3.86 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
<!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">
<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=Poppins:wght@100;200;300;400;500;600;800&display=swap" rel="stylesheet">
<title>The Great Outdoors</title>
</head>
<body>
<section class="header">
<nav>
<div class="nav-links">
<ul>
<li><a href="">ABOUT</a></li>
<li><a href="">EXPLORE</a></li>
<li><a href="https://mjjauhar.github.io/"><img id="map-icon" src="images/map-icon.png"></a></li>
<li><a href="">JOURNAL</a></li>
<li><a href=""><img id="search-icon" src="images/search-icon.png"> SEARCH</a></li>
</ul>
</div>
</nav>
<div class="text-box">
<h1>The Great Outdoors</h1>
<p>Wander often. Wonder always</p>
<a href="https://youtu.be/IUN664s7N-c" class="play-btn"><img src="images/play_circle.svg"></a>
</div>
</section>
<!-- Explore the world section -->
<section class="explore">
<h1>Explore the World</h1>
<p>We seek to provide the most authentic content from athletes, adventurers, <br>
explorers and travellers around the world. Our long-term mission is to educate, <br>
inspire and enable all peoples to experience & protect wilderness.
</p>
<div class="row">
<div class="explore-column">
<img src="images/norway.png">
<div class="layer">
<h3>Nærøyfjord</h3>
<p>NORWAY</p>
</div>
</div>
<div class="explore-column">
<img src="images/antelope-canyon.png">
<div class="layer">
<h3>Antelope Canyon</h3>
<P>UNITED STATES</P>
</div>
</div><div class="explore-column">
<img src="images/grossglockner.png">
<div class="layer">
<h3>Grossglockner</h3>
<P>AUSTRIA</P>
</div>
</div>
</div>
<a href="">SEE MORE ></a>
</section>
<!-- The Journal section -->
<section class="journal">
<h1>The Journal</h1>
<p>Our favorite stories about public lands and oppurtunities for you to get<br>
involved in protecting your outdoor experience.
</p>
<div class="row">
<div class="journal-column">
<img src="images/yosemite-national-park.png">
<h6>MAY 30, 2017</h6>
<h3>An Unforgettable</h3>
<p>If you only have one day to visit Yosemite National Park <br>
and you want to make the most out of it.
</p>
</div>
<div class="journal-column">
<img src="images/golden-gate-bridge.png">
<h6>MAY 28, 2017</h6>
<h3>Synphonies in Steel</h3>
<p> Crossing the Golden Gate Bridge from San Francisco, you <br>
arrive in Marin even before landing on solid ground.
</p>
</div>
</div>
<a href="">ALL POSTS ></a>
</section>
<!-- footer -->
<section class="footer">
<ul>
<li><img id="copyright-img" src="images/copyright-icon.png"> 2022 THE GREAT OUTDOORS.All rights reserved   |   ABOUT   EXPLORE   JOURNAL   SEARCH</li>
</ul>
</section>
</body>
</html>