-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsearch.html
116 lines (92 loc) · 2.72 KB
/
search.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<title>Searchpage</title>
</head>
<body>
<div class="Annavbar-div">
<div class="Aboxx-wrapper">
<img class="Alogo" src="Image/logo.png" alt="Logo">
<div class="Alinks">
<a href="#" class="Anav-link">Download App</a>
<a href="#" class="Anav-link">About Us</a>
<a href="#" class="Anav-link">Installment</a>
<a href="#" class="Anav-link">Tours</a>
<a href="#" class="Anav-link">My Booking</a>
</div>
</div>
<div class="ssf">
<div class="s-bar">
<form id="form">
<input type="text" id="sinput" name="search" placeholder="Search...">
<button type="button" id="sBtn">Search Place</button>
</form>
</div>
<div class="sorting-options">
<label for="sortByPrice">Sort by Price:</label>
<select id="sortByPrice">
<option>--Select--</option>
<option value="asc">Low to High</option>
<option value="des">High to Low</option>
</select>
</div>
<div class="sorting-options">
<label for="sortByRating">Sort by Rating:</label>
<select id="sortByRating">
<option >--Select--</option>
<option value="lowiToHigh">1</option>
<option value="highiToLow">2</option>
<option value="highiToLow">3</option>
<option value="highiToLow">4</option>
<option value="highiToLow">5</option>
</select>
</div>
</div>
<div id="Search_area">
</div>
<footer>
<div id="noo">
<div id="no">
<div id="alca">
<img src="Image/logo.png" alt="" />
</div>
<p>
Covinience is our priority to satisfy our <br>
Customers and we provide all the <br>
features you can use easily and quickyly.
</p>
</div>
<div id="yess">
<div class="yes">
<h3>About</h3>
<p>How to Book</p>
<p>Contact Us</p>
<p>Help Center</p>
</div>
<div class="yes">
<h3>Products</h3>
<p>destination</p>
<p>Flight</p>
<p>Loding</p>
</div>
<div class="yes">
<h3>Social</h3>
<p>Facebook</p>
<p>Twitter</p>
<p>Instagram</p>
</div>
</div>
</div>
<hr>
<div id="end">
<p>Privacy Policy</p>
<p2>Copyright © 2022 Alcazar</p2>
</div>
</footer>
</div>
<script src="search.js"></script>
</body>
</html>