-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGuide_search_page.php
More file actions
56 lines (36 loc) · 1.78 KB
/
Guide_search_page.php
File metadata and controls
56 lines (36 loc) · 1.78 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
<!DOCTYPE html>
<html>
<head>
<title>Search_TourGuide</title>
<link rel="stylesheet" type="text/css" href="css/Guide_search_page.css">
<meta "name=viewport" content="width=device-width, user-scalable=no,initial-scable=1.0, maximum-scle=1.0, minimum-scalable=1.0">
<meta charset="utf-8">
</head>
<body>
<div class="header">
<form>
<div class="form-box">
<h1>Search Tour Guide</h1>
<input class="search destinations" type="text" name="destinations" id="" placeholder="Destinations">
<input class="search arrivaldate" type="text" name="arrivaldate" id="" placeholder="Arrival_Date(DD/MM/YY)">
<input class="search departuredate" type="text" name="departuredate" id="" placeholder="Departure_Date(DD/MM/YY)">
<input class="search numoftourist" type="text" name="numoftourist" id="" placeholder="Number_Of_Tourist">
<button class="Search-btn" type="button">Search</button>
<br><br>
<div class="check-box">
<input type="checkbox" name="" id="Guide With Vehicles">
<label for="Guide With Vehicles">Guide With Vehicles</label>
<input type="checkbox" name="" id="Round Trip Guides">
<label for="Round Trip Guides">Round Trip Guides</label>
<input type="checkbox" name="" id="Per-Day Guides">
<label for="Per-Day Guides">Per-Day Guides</label>
</div><!--check-box-->
<br><br><br><br>
<div class="Seeall-btn">
<button type="button">See All Tourguide</button>
</div><!--seeall-button-->
</div><!--form-box-->
</form>
</div><!--header-->
</body>
</html>