-
Notifications
You must be signed in to change notification settings - Fork 0
/
kasol.html
121 lines (114 loc) · 5.76 KB
/
kasol.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
<!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="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Kasol</title>
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="index.html">Himachal Trip</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="maps.html">Map and Routes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="timeline.html">Timeline</a>
</li>
<li class="nav-item">
<a class="nav-link" href="hotel.html">Hotel</a>
</li>
<li class="nav-item">
<a class="nav-link" href="budget.html">Budget</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Itinerary
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="shimla.html">Shimla</a>
<a class="dropdown-item" href="manali.html">Manali</a>
<a class="dropdown-item" href="kullu.html">Kullu</a>
<a class="dropdown-item active" href="kasol.html">Kasol</a>
</div>
</li>
</ul>
</div>
</nav>
<!-- content -->
<div class="card-deck m-5">
<div class="card">
<img class="card-img-top" src="photos/manikaran.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Hot Spring at Manikaran</h5>
<p class="card-text text-justify">Manikaran is the home to the natural hot springs which are sacred to
the Sikh and Hindu Belief. Housing many pilgrimage sites revered by the Sikhs and Hindus, Manikaran
is located on the Parvati River.</p>
</div>
<div class="card-footer">
<small class="text-muted">Location: Hari Har Ghat, Manikaran Road, Distt. Kullu, Manikaran, Himachal
Pradesh.</small>
</div>
</div>
<div class="card">
<img class="card-img-top" src="photos/Israeli_cuisine.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Binge on Israeli Cuisine</h5>
<p class="card-text text-justify">Imagine viewing the beautiful Himalayas and the other snow-capped
mountains as you
binge eat shakshouka, lemon cakes and other types of exotic Israeli cuisine. <br> <br> There is a
reason that
Kasol is known as the mini Israel of India.</p>
</div>
<div class="card-footer">
<small class="text-muted">Last updated 3 mins ago</small>
</div>
</div>
<div class="card">
<img class="card-img-top" src="photos/camping.jpg" alt="Card image cap">
<div class="card-body">
<h5 class="card-title">Camping</h5>
<p class="card-text text-justify">Out of so many amazing activities, one of the sure best things to do
in Kasol is to camp in the many amazing places of the Parvati Valley. Green-clad hills with the
roaring river passing by at the base make for an amazing backdrop to camp in this beautiful place.
</p>
</div>
<div class="card-footer">
<small class="text-muted">Price: Starting from INR 1100/-</small>
</div>
</div>
<div class="card">
<div class="card-body">
<p class="card-text text-justify">
For More Places in Kasol: <a href="https://www.thrillophilia.com/things-to-do-in-kasol" target="_blank">Click
Here</a>
</p>
</div>
</div>
</div>
<!-- jQuery, JS, and Popper.js -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</body>
</html>