-
Notifications
You must be signed in to change notification settings - Fork 1
/
Holiday.html
123 lines (115 loc) · 5.43 KB
/
Holiday.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Holiday</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="css/holidaystyle.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/responsive.css" />
</head>
<body>
<!--navbar-->
<nav class="navbar glass" style="height: 70px">
<span><a href="#home" style="display: flex; align-items: center"><img class="img2" src="./img/mountain.png" width="40" style="margin: -25px -10px -25px -20px" />
<h1 class="logo">ADVENTURE</h1>
</a></span>
<ul class="nav-links">
<li><a href="#home" id="pri" class="active cir_border">Home</a></li>
<li><a href="#events" id="sec" class="cir_border">Events</a></li>
<li><a href="#explore" id="tri" class="cir_border">Explore</a></li>
<li><a href="#tours" id="quad" class="cir_border">Tours</a></li>
<li><a href="#about" id="quint" class="cir_border">About</a></li>
<li><a href="#contact" id="hept" class="cir_border">Contact</a></li>
</ul>
<img src="./img/menu-btn.png" alt="" class="menu-btn" />
</nav>
<!--navbar-->
<header id="home">
<div class="header-content">
<h2 id="quote">Walking Holidays around the World</h2>
<div class="line"></div>
<h1>EXPLORE</h1>
</div>
</header>
<!-- Contributions -->
<div class="title">
<h1 class="font-color">Contributors</h1>
<div class="line"></div>
</div>
<section class="contributors" id="contribution">
<div class="concard">
<img src="img/contributor1.jpg" alt="profile-picture" class="pfp"/>
<div class="text">
<h1>India Hikes</h1>
</div>
<div class="logolink">
<a href="https://indiahikes.com/" target="_blank">
<img src="img/contributor1.jpg" alt="Logo" class="Logo"/></a>
</div>
</div>
<div class="concard">
<img src="img/contributor2.jpg" alt="profile-picture" class="pfp"/>
<div class="text">
<h1>BMC Adventures</h1>
</div>
<div class="logolink">
<a href="https://www.bmcadventures.com/" target="_blank">
<img src="img/contributor2.jpg" alt="Logo" class="Logo"/></a>
</div>
</div>
<div class="concard">
<img src="img/contributor3.jpg" alt="profile-picture" class="pfp"/>
<div class="text">
<h1>Himalyan Hikers</h1>
</div>
<div class="logolink">
<a href="https://www.himalayanhikers.in/" target="_blank">
<img src="img/contributor3.jpg" alt="Logo" class="Logo"/></a>
</div>
</div>
<div class="concard">
<img
src="img/contributor4.png"
alt="profile-picture"
class="pfp"
/>
<div class="text">
<h1>Tour My India</h1>
</div>
<div class="logolink">
<a href="https://www.tourmyindia.com/treks/" target="_blank">
<img src="img/contributor4.png" alt="Logo" class="Logo"/></a>
</div>
</div>
</section>
<!-- Contributions -->
<!--Explore-->
<section class="explore" id="explore" style="height: auto;">
<div class="explore-content">
<h1>OUR DUTY</h1>
<div class="line"></div>
<p>
“Walking holidays and trekking teams in India offer a thrilling adventure amidst diverse landscapes, ranging
from the towering peaks of the Himalayas to the lush greenery of the Western Ghats. These experiences cater
to both novice adventurers and seasoned trekkers, providing opportunities to explore remote trails, encounter
breathtaking vistas, and immerse oneself in the rich cultural tapestry of India.
Guided by experienced trekking teams, participants embark on journeys that vary in difficulty, duration, and
terrain, ensuring there's an option for every preference and fitness level. Whether scaling lofty summits like
Everest Base Camp or traversing picturesque valleys in Himachal Pradesh, each trek promises encounters with
stunning natural beauty and encounters with local communities.
These walking holidays not only foster a deep connection with nature but also promote sustainable tourism
practices, often emphasizing responsible trekking, eco-friendly accommodations, and support for local communities.
With India's vast and varied topography, from snow-capped peaks to tropical forests, trekking enthusiasts are spoiled
for choice, making each expedition a memorable and rewarding experience.
</p>
<a href="#" class="ctn">Explore more</a>
</div>
</section>
<!--Explore-->
</body>
</html>