-
Notifications
You must be signed in to change notification settings - Fork 0
/
About.html
405 lines (376 loc) · 18.6 KB
/
About.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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<title> IndianTourism</title>
<style>
body {
height: 100vh;
background-color: antiquewhite;
}
.navbar-brand{
font-size: 25px;
}
.Btn {
margin-left: 10px;
font-size: 25px;
}
.w-100 {
height: 500px;
}
.heading {
margin-top: 20px;
margin-left: 20px;
}
.py-3 {
background-color: rgb(202, 200, 198);
}
.entry-content {
margin-top: 25px;
font-size: 17px;
margin-left: 30px;
}
.aboutimage {
margin-left: 430px;
}
.py-3 p{
padding-top: 15px;
}
</style>
</head>
<body>
<!-- <h1>Hello, world!</h1> -->
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">Indian Tourism
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link active" href="About.html">About</a>
<li class="nav-item">
<a class="nav-link" href="contactus.html">Contect Us</a>
</ul>
<form class="d-flex">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
<div class="Btn">
<!-- <input type="button" name=" Login"> -->
<button class="btn btn-danger" data-bs-toggle="modal" data-bs-target="#LoginModal">Login</button>
<button class="btn btn-danger" data-bs-toggle="modal" data-bs-target="#SignUpModal">SignUp</button>
</div>
</div>
</div>
</nav>
<!-- Button trigger modal -->
<!-- Login Modal -->
<div class="modal fade" id="LoginModal" tabindex="-1" aria-labelledby="LoginModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="LoginModalLabel">Login at IndianTourism</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Remember Me</label>
</div>
<button type="submit" class="btn btn-primary">Login</button>
</form>
</div>
<!-- <div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div> -->
</div>
</div>
</div>
<!-- Button trigger modal -->
<!-- Sign UpModal -->
<div class="modal fade" id="SignUpModal" tabindex="-1" aria-labelledby="SignUpModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="SignUpModalLabel">Sign Up</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3">
<label for="exampleInputPassword1" class="form-label">Confirm Password</label>
<input type="Confirm password" class="form-control" id="exampleInputPassword1">
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">your data will be stored in database </label>
</div>
<button type="submit" class="btn btn-primary">Sign Up</button>
</form>
</div>
</div>
</div>
</div>
<h1 class="heading">Why India Should Be Your Next Travel Destination</h1>
<div class="entry-content">
<ul>
<li>
<p>India is a vast country in the world with many attractions mainly for travel & tourism. Many foreigners
mostly like to visit India to spend a memorable and unforgettable holiday trip experience in their life. Not
in
one, many tourist attractions make tourists visit India again and again from all sides of the world.</p>
</li>
<li>
<p>India is famous for tourism. Each state in India is famous for different tourist attractions. Different
places in
India will entertain tourists by natural wonders, tranquil places, history and architecture, spirituality etc.
All
these make visitors to visit India for a memorable trip.</p>
</li>
<li>
<p>The main reason why India is famous for tourism means all type of tourist destinations in one place. India is
the
right place for wild safaris, desert safaris, nature seeking places, honeymoon spot, adventurous activities,
spiritual places, and historical places of India.</p>
</li>
<h2><strong>1. History and Architecture</strong></h2>
<p><img class="aboutimage" src="1.jpg" alt="" width="600" height="400"
sizes="(max-width: 640px) 100vw, 640px">
</p>
<li>
<p>India is famous for many historical monuments and the architectural skill involved. For the history seekers,
India is the apt place to visit different historical monuments. Each historical monument has a great history
and
its specific identity. The royalty of Indian kingdom can be seen in these historical monuments. Many royal
palaces
are now converted into world’s best hotels and resorts.</p>
</li>
<p><img class="aboutimage" src="2.jpg" alt="india haveli" width="600" height="400"
sizes="(max-width: 640px) 100vw, 640px"></p>
<li>
<p>The tourists can lodge in these royal palaces to experience the royalty of Indian Kings. The architectural
skills
involved in these monuments show us the times of Indian kings. The major attraction of all historical
monuments is
architectural designs. Different constructions held with a unique identity which is because of the thoughts of
great architects.</p>
</li>
<li>
<p>Even some monuments are ideal for architectural skills, for example, Taj Mahal,
Red fort, Sheesh Mahal etc. Some historical monuments in India attract science seekers also due to the science
behind the construction of the monument. For example Jantar Mantar is a famous observatory in India. Not in
one
all different types of historical monuments will make you enjoy and learn something from them.</p>
</li>
<p><img class="aboutimage" src="Tajmahal.jpeg" alt="Taj Mahal" width="600" height="400"
sizes="(max-width: 1920px) 100vw, 1920px"></p>
<hr>
<h2><strong>2. The Heaven of Nature</strong></h2>
<p><img class="aboutimage" src="3.jpg" alt="natural beauty in iNdia" width="600" height="400"
sizes="(max-width: 640px) 100vw, 640px"></p>
<li>
<p>As we know India is a mixture of all type of attractions and one of them is nature. For the nature lovers,
India
is the correct place where nature makes you feel to rest in a pleasant atmosphere. Mostly foreigners wanted to
visit India for natural paradise and a memorable holiday spend in the beauty of nature. Different waterfalls,
lakes, rivers, hill stations etc are the tourist attractions.</p>
</li>
<li>
<p>India is rich for natural attractions in large number to the tourists. The atmosphere at waterfalls will make
you
spend your whole life there with your friends and families. Some lakes in India with beautiful parks is the
apt
place for photographers, bird lovers, and nature seekers.</p>
</li>
<li>
<p>Hill stations in India are famous for a pleasant and blissful environment. Mostly tourists attract to Hill
Stations why because of the beautiful atmosphere at the topmost hills. The atmosphere at the hill stations is
very
cold and chilling. That’s why India is heaven for nature and tourism.</p>
</li>
<li>
<p><strong>Famous Natural spots: </strong>Mount Abu Hill station, <strong><a
href="http://www.deccanodysseytrains.com/destinations/udaipur.html">Pichola Lake in Udaipur</a></strong>,
Dal
Lake in Jammu and Kashmir, Nubra valley in Ladakh, different falls in Kerala.</p>
</li>
<hr>
<h2><strong>3. Spirituality and Harmony</strong></h2>
<p><img class="aboutimage" src="4.jpg" alt="tourist places" width="600" height="400"
sizes="(max-width: 640px) 100vw, 640px"></p>
<li>
<p>India is a spiritual country because of nowhere you can see in the world as much as India. India is totally
filled with a lot number of large temples and ashrams. Many foreigners visit these places for a pleasant and
peaceful environment. These places are re-defined with spiritual programmes like Yoga, workouts, meditation
training etc. Many foreigners are mostly like to visit India for learning Yoga.</p>
</li>
<li>
<p>In India Yoga can be taught in a peaceful and tranquil environment means ashrams. Different ashrams in India
will
teach you a define Yoga and they can turn as you Yoga teachers also. Different temples in India attracts
tourists
mostly are Jainism and Buddhism temples and others.</p>
</li>
<li>
<p>India is the defined place for seeking Yoga, Meditation, and traditional practices which helps you in
different
ways. Even some people visit India and spends some days in ashrams for seeking all these actions.</p>
<li>
<p><strong>Famous spiritual centers: </strong>Golden temple in Amritsar, Dharmasala and Manali in Himachal
Pradesh.
Parmarth Niketan in Rishikesh.</p>
</li>
<hr>
<h2><strong>4. Safaris</strong></h2>
<p><img class="aboutimage" src="5.jpg" alt="Wildlife Safari in India" width="600" height="400"
sizes="(max-width: 640px) 100vw, 640px"></p>
<li>
<p>India is famous for the different type of safaris like wildlife safaris, desert safaris, etc. India is a
place of
different national sanctuaries and tiger reserves. In India, wildlife safari is available which we can
experience
the wildlife of tigers and different animals. <strong><a
href="http://www.deccanodysseytrains.com/blog/wildlife-indian-luxury-safari-with-deccan-odyssey-train/">Wildlife
safari in India</a></strong> will give you a memorable and adventurous trip in your life.</p>
</li>
<hr>
<h2><strong>5. Place of Adventurous Acts</strong></h2>
<p><img class="aboutimage" src="6.jpeg" alt="" width="600" height="400"
sizes="(max-width: 640px) 100vw, 640px">
</p>
<li>
<p>India is the right place for many adventurous acts. For the best <strong><a
href="http://www.deccanodysseytrains.com/blog/journey-north-india-deccan-odyssey-train/">experience visit
north India</a></strong> because it is the place for adventurous acts the nearby Himalayas and different
valleys, rivers, mountains. A large number of tourists visits India for a thrilling and adventurous holiday
trip.
</p>
</li>
<li>
<p>The famous adventurous acts in India are Bungee jumping, Trekking, Paragliding, scuba diving, Dune bashing
etc.
The feeling you will get while doing these acts is weird and unforgettable in your life. For the adventure
seekers, India is the apt place. So have an adventurous trip to India.</p>
</li>
<li>
<p><strong>Famous adventurous spots: </strong>Rishikesh, Bir Billing, Andaman Islands, <strong><a
href="http://www.deccanodysseytrains.com/blog/top-10-honeymoon-destinations-rajasthan/">Rajasthan</a></strong>.
</p>
</li>
<hr>
<h2><strong>6. Delicious Food</strong></h2>
<p><img class="aboutimage" src="7.jpg" alt="" width="600" height="400"
sizes="(max-width: 640px) 100vw, 640px">
</p>
<li>
<p>Apart from tourist places, India is famous for its delicious food. The food on streets and in restaurants are
tasty and delicious. After completing trips tourists not require tired to search for food. Because everywhere
food
is available on roads or in hotels. India is home to different species so tourists can enjoy all different
types
of varieties.</p>
</li>
<li>
<p>Every state has its unique speciality in food items. Where ever you go in India the food will not disappoint
you.
Many tourists like to taste Indian hot and spicy food. So try to taste all varieties of food in your location.
</p>
</li>
<hr>
<h2><strong>7. Land of Arts and Cultures</strong></h2>
<p><img class="aboutimage" src="8.jpg" alt="art & culture in India" width="600" height="400"
sizes="(max-width: 640px) 100vw, 640px"></p>
<li>
<p>India is well-known as the land of arts and cultures. Many artists in all over the world from India. In India
arts and cultures are mostly encouraged because not to forget our ancestral cultures. Every place in India is
famous for different arts and cultures.</p>
</li>
<li>
<p>During festivals you can experience the Indian arts and cultures. At the time of different festivals, these
arts
and cultures will be reflected at up most. In one word, these arts and cultures are the symbols of Indian
culture
and heritage.</p>
</li>
<hr>
<h2><strong>8. Shopping</strong></h2>
<p><img class="aboutimage" src="9.jpg" alt="shopping in india" width="600" height="400"
sizes="(max-width: 640px) 100vw, 640px"></p>
<li>
<p>Another attraction is shopping in India. There will be many shopping complexes in nearby tourist places. The
things available in India will be different and attractive. Many foreigners like shopping in India. The major
attractions in India for shopping are the artifacts, handicrafts, souvenirs, hand looms, clothes etc.</p>
</li>
<hr>
<h2><strong>9. Luxurious Journey</strong></h2>
<p><img class="aboutimage" src="10.jpg" alt="luxury train travel in India" width="600" height="400"
sizes="(max-width: 640px) 100vw, 640px"></p>
<li>
<p>India is at topmost in arranging luxurious needs to tourists. There will be resorts and hotels at all nearby
most
popular tourist places. The maintenance of these resorts and hotels are neat and luxurious to spend a holiday
trip
with all needs as you feel at home.</p>
</li>
<hr>
<h2><strong>10. Hospitality</strong></h2>
<p><img class="aboutimage" src="11.jpg" alt="travel" width="600" height="400"
sizes="(max-width: 640px) 100vw, 640px"></p>
<li>
<p>Indians will treat the tourists in a respective manner. The receiving manner of Indians is very respective
and
helpful. Residents will help the tourists to take a tour to all nearby tourist places. They will be always
helpful
to the tourists because Indians follows the slogan<strong> “Atithi Devo Bhava”</strong></p>
</li>
</ul>
</div>
<section>
<footer class="py-3 my-4">
<p class="text-center text-muted">© 2021 Company, IndianTourism</p>
</footer>
</section>
</body>
</html>