-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallary.html
More file actions
306 lines (280 loc) · 7.03 KB
/
gallary.html
File metadata and controls
306 lines (280 loc) · 7.03 KB
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
<!DOCTYPE html>
<html>
<style>
:root {
--primary-color: #3685fb;
--primary-color-dark: #2f73d9;
--secondary-color: #fafcff;
--text-dark: #0d213f;
--text-light: #767268;
--extra-light: #ffffff;
--max-width: 1200px;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial;
}
.header {
text-align: center;
padding: 32px;
}
.row {
display: -ms-flexbox; /* IE10 */
display: flex;
-ms-flex-wrap: wrap; /* IE10 */
flex-wrap: wrap;
padding: 0 4px;
}
.section__container {
max-width: var(--max-width);
margin: auto;
padding: 1.5rem 1rem;
}
a {
text-decoration: none;
color: inherit;
cursor: pointer;
}
/* Create four equal columns that sits next to each other */
.column {
-ms-flex: 25%; /* IE10 */
flex: 25%;
max-width: 25%;
padding: 0 4px;
}
.column img {
margin-top: 8px;
vertical-align: middle;
width: 100%;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
.column {
-ms-flex: 50%;
flex: 50%;
max-width: 50%;
}
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
-ms-flex: 100%;
flex: 100%;
max-width: 100%;
}
}
nav {
padding: 1rem;
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
max-width: var(--max-width);
display: flex;
align-items: center;
justify-content: space-between;
}
.nav__logo {
font-size: 1.2rem;
font-weight: 600;
color: var(--text-dark);
cursor: pointer;
}
.nav__logo span {
color: var(--primary-color);
}
.nav__links {
list-style: none;
display: flex;
align-items: center;
gap: 1rem;
}
.link a {
padding: 0 1rem;
color: var(--text-dark);
transition: 0.3s;
}
.link a:hover {
color: var(--primary-color);
}
.btn {
padding: 0.75rem 2rem;
outline: none;
border: none;
font-size: 1rem;
color: var(--extra-light);
background-color: var(--primary-color);
border-radius: 5rem;
cursor: pointer;
transition: 0.3s;
}
.btn:hover {
background-color: var(--primary-color-dark);
}
.footer {
background-color: var(--text-dark);
}
.footer__container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 5rem;
color: var(--secondary-color);
}
.footer__col h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 2rem;
}
.footer__col h3 span {
color: var(--primary-color);
}
.footer__col p {
font-size: 0.8rem;
margin-bottom: 1rem;
cursor: pointer;
transition: 0.3s;
}
.footer__col p:hover {
color: var(--primary-color);
}
.footer__col p span {
font-weight: 600;
}
.footer__col h4 {
font-size: 1rem;
font-weight: 600;
margin-bottom: 2rem;
}
.footer__bar {
max-width: var(--max-width);
margin: auto;
padding: 0.5rem;
text-align: center;
font-size: 0.8rem;
color: var(--secondary-color);
border-top: 1px solid var(--text-light);
}
.chatbot-toggler{
position: fixed;
bottom: 30px;
right: 35px;
outline: none;
border: none;
height: 50px;
width: 50px;
display: flex;
cursor: pointer;
align-items: center;
justify-content: center;
border-radius: 50%;
background: #000;
transition: all 0.2s ease;
z-index: 2;
}
</style>
<body>
<nav>
<div class="nav__logo">NepTour<span>.</span></div>
<ul class="nav__links" id="nav-links">
<li class="link"><a href="index.html">Home</a></li>
<li class="link"><a href="#section3">Accomodation</a></li>
<li class="link"><a href="#section2">Guides</a></li>
<li class="link"><a href="#section1">Destinations</a></li>
</ul>
<a href="contact.html"><button class="btn">Contact Us</button></a>
<div class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</nav><br><br><br>
<!-- Header -->
<div class="header">
<h1>Image Gallary</h1>
<p>Pictures from many locations across Nepal</p>
</div>
<!-- Photo Grid -->
<div class="row">
<div class="column">
<img src="assets/1.jpg" style="width:100%">
<img src="assets/2.jpg" style="width:100%">
<img src="assets/3.jpg" style="width:100%">
<img src="assets/4.jpg" style="width:100%">
<img src="assets/5.jpg" style="width:100%">
<img src="assets/6.jpg" style="width:100%">
<img src="assets/7.jpg" style="width:100%">
</div>
<div class="column">
<img src="assets/thamel.jpg" style="width:100%">
<img src="assets/102.jpg" style="width:100%">
<img src="assets/103.jpg" style="width:100%">
<img src="assets/god.jpeg" style="width:100%">
<img src="assets/dusit.jpg" style="width:100%">
<img src="assets/pashupati.jpg" style="width:100%">
</div>
<div class="column">
<img src="assets/temp.png" style="width:100%">
<img src="assets/swayambhunath.jpg" style="width:100%">
<img src="assets/lumbini.jpg" style="width:100%">
<img src="assets/soltee.jpg" style="width:100%">
<img src="assets/everesthotel.jpeg" style="width:100%">
<img src="assets/kumaribahal.jpg" style="width:100%">
</div>
<div class="column">
<img src="assets/nagarkot.jpg" style="width:100%">
<img src="assets/namaste.PNG" style="width:100%">
<img src="assets/narayanhiti.webp" style="width:100%">
<img src="assets/janakpur.jpg" style="width:100%">
<img src="assets/yakandyeti.jpeg" style="width:100%">
<img src="assets/basantapur.jpg" style="width:100%">
<img src="assets/kathmandu.png" style="width:100%">
</div>
</div>
<br><BR><BR>
<footer class="footer">
<div class="section__container footer__container">
<div class="footer__col">
<h3>NepTour<span>.</span></h3>
<p>
Explore the Land Of Truth with us covering your backs and guiding you through the beauty of nepal.
</p>
</div>
<div class="footer__col">
<center><img src="assets/wasitkrish.jpg" style="width: 140px; height: 140px;"><br><p>@wasitkrish</p></center>
</div>
<div class="footer__col">
<h4>Address</h4>
<p>
<span>Address:</span> Sankhamul, Kathmandu, Nepal
</p>
<p><span>Email:</span> NepTour@krishsingh.com.np</p>
<p><span>Phone:</span>+977 9865365520</p>
</div>
</div>
<div class="footer__bar">
Copyright © 2023 https://Krishsingh.com.np/. All rights reserved.
</div>
</footer>
<script>
const hamburger = document.getElementById('hamburger');
const navLinks = document.getElementById('nav-links');
if (hamburger && navLinks) {
hamburger.addEventListener('click', function() {
navLinks.classList.toggle('active');
hamburger.classList.toggle('active');
});
const links = document.querySelectorAll('.nav__links .link a');
links.forEach(link => {
link.addEventListener('click', function() {
navLinks.classList.remove('active');
hamburger.classList.remove('active');
});
});
}
</script>
</body>
</html>