-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDestination.html
154 lines (145 loc) · 4.98 KB
/
Destination.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Travel Dial</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="styles/header.css" />
<link rel="stylesheet" href="styles/destination.css" />
<link rel="stylesheet" href="styles/footer.css" />
</head>
<body>
<div class="header">
<img
onclick="window.location.href='index.html'"
src="resources/logo.png"
alt="Travel Dial"
/>
<div>
<ul>
<li><a href="Destination.html">Destinations</a></li>
<li><a href="Galley.html">Gallery</a></li>
<li><a href="About.html">About</a></li>
<li><a href="login.html">Login/Signup</a></li>
<li><a href="registration.html">Partner with us</a></li>
</ul>
</div>
</div>
<div class="main">
<div id="searchbar">
<span>What is your Destination?</span>
<div class="sb">
<select id="" name="city">
<option value="Choose City">City</option>
<option value="Nanital">Nainital</option>
<option value="Shimla">Shimla</option>
<option value="Jaipur">Jaipur</option>
</select>
<select id="" name="state">
<option value="Choose State">State</option>
<option value="Punjab">Punjab</option>
<option value="Uttrakhand">Uttrakhand</option>
<option value="Rajasthan">Rajasthan</option>
</select>
<div>
<label for="">From: </label>
<input type="date" name="" value="" />
</div>
<div>
<label for="">To: </label>
<input type="date" name="" value="" />
</div>
</div>
<button>Search</button>
</div>
<div id="packages">
<div class="package">
<img alt="Dummy Photo" src="" />
<div class="info">
<h3>Utrrakhand Tours</h3>
<p>Kapriwas, Haryana</p>
<div class="rating">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star unchecked"></span>
</div>
<div class="route">
Delhi(4N) -> Nainital (2N) -> Mussoorie (3N)
</div>
<div class="price">
<span class="old-price">9000</span>
<span class="new-price">8000</span>
<button onclick="window.location.href='details.html'">
View Deal
</button>
</div>
</div>
</div>
<div class="package">
<img alt="Dummy Photo" src="" />
<div class="info">
<h3>Utrrakhand Tours</h3>
<p>Kapriwas, Haryana</p>
<div class="rating">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star unchecked"></span>
</div>
<div class="route">
Delhi(4N) -> Nainital (2N) -> Mussoorie (3N)
</div>
<div class="price">
<span class="old-price">9000</span>
<span class="new-price">8000</span>
<button onclick="window.location.href='details.html'">
View Deal
</button>
</div>
</div>
</div>
<div class="package">
<img alt="Dummy Photo" src="" />
<div class="info">
<h3>Utrrakhand Tours</h3>
<p>Kapriwas, Haryana</p>
<div class="rating">
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star checked"></span>
<span class="fa fa-star unchecked"></span>
</div>
<div class="route">
Delhi(4N) -> Nainital (2N) -> Mussoorie (3N)
</div>
<div class="price">
<span class="old-price">9000</span>
<span class="new-price">8000</span>
<button onclick="window.location.href='details.html'">
View Deal
</button>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<img src="resources/logo.png" alt="Travel Dial" />
<div>
<ul>
<li><a href="About.html">About</a></li>
<li><a href="Pricing.html">Pricing</a></li>
<li><a href="Company.html">Company</a></li>
<li><a href="Blog.html">Blog</a></li>
</ul>
</div>
</div>
</body>
</html>