-
Notifications
You must be signed in to change notification settings - Fork 2
/
carselect.html
85 lines (73 loc) · 2.72 KB
/
carselect.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
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@200;300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/Carselect.css">
</head>
<body>
<div id="navbar">
<button id="sidebar"><i class="fa-solid fa-bars"></i></button>
<div id="img"><img src="2ndimg.png" alt="" id="imgnavbar"></div>
<div id="rightnav"><button>Become a Host</button><button>ZMS</button><button id="loginn">Login/Signup</button></div>
</div>
<div id="container">
<div id="leftbigdiv">
<h3>Seats</h3>
<div id="seatdiv">
<div id="fourbtn">4</div>
<div id="fivebtn">5</div>
<div id="sevenbtn">7</div>
</div>
<h3>Car Types</h3>
<div id="cartypediv">
<div>SUV</div>
<div>hatchback</div>
<div>Sedan</div>
</div>
<h3>Transmission</h3>
<div id="Transmission">
<div id="manual">Manual</div>
<div id="auto">Automatic</div>
</div>
<h3>Delivery Type</h3>
<div id="delivery">
<div id="home">Home Delivery</div>
<div id="air">Airport</div>
</div>
<p id="lowerpara">Enjoy free kilometers. If you leave the car with excess fuel compared to booking start, value of that extra fuel will be refunded to you</p>
</div>
<div id="rightdiv">
<div id="Topgreendiv">
<div id="box1">
<div id="sdate">Start Date</div>
<div id="stime">Start Time</div>
</div>
<div id="box2">
<div id="edate">End Date</div>
<div id="etime">End Time</div>
</div>
</div>
<h5 id="Enjoy">ENJOY FREE KMS</h5>
<p>If you leave the car with Excess fuel compared to booking start, value of that extra fuel will be refunded to you</p>
<div id="rightdivvvv"></div>
<div id="lowerdiv">
<div>
<p>Can't Find The Right Car</p>
<p id="grayp">The car I was looking for isn't listed here</p>
<button>NOTIFY ME</button>
</div>
<div>
<img src="https://img1.zoomcar.com/images/original/9cb4c0cb2f3656a765db302650c5f867bb31e06a.png?1594715157" alt="">
</div>
</div>
</div>
</div>
</body>
</html>
<script src="./js/Carselect.js"></script>