forked from mukulramdev/ZoomCar_Clone_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
findCityLoction.html
61 lines (58 loc) · 2.12 KB
/
findCityLoction.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
<!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">
<title>Self Drive Car Rentals | Rent a Car | Car Hire @Zoomcar</title>
<link rel="icon" type="image/x-icon" href="assets/img/favicon-94.png">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body class="searchBox">
<div class="backArrowBtn">
<img src="./assets/img/backArror.png" alt="">
</div>
<section class="findCityByLocation">
<div class="findCityByLocationInput">
<div class="city-lightbox">
<p class="icon-green-beacon"></p>
<input type="submit" value="Select your starting point" />
</div>
<div>
<img src="./assets/img/findLocationicon.png" alt="">
<p>Current Location</p>
</div>
<div>
<img src="./assets/img/googlemapicon.png" alt="">
<p>Select Location on Map</p>
</div>
</div>
<div class="suggestedPickupLocation">
<div class="recentlySearched">
<h4>RECENTLY SEARCHED LOCATIONS</h4>
<div>
<img src="./assets/img/googleLocationicon.png" alt="">
<p>Bangalore International Airport Term...</p>
</div>
</div>
<div class="suggestedPickUp">
<h4>SUGGESTED PICK UP LOCATIONS</h4>
<div>
<img src="./assets/img/googleLocationicon.png" alt="">
<p>Bangalore International Airport</p>
</div>
<hr>
<div>
<img src="./assets/img/googleLocationicon.png" alt="">
<p>Yelahanka Railway Station, Yelahanka...</p>
</div>
</div>
</div>
<div class="city-lightbox">
<button disabled="disabled">
Confirm pickup location
</button>
</div>
</section>
</body>
</html>