-
Notifications
You must be signed in to change notification settings - Fork 0
/
rental.html
131 lines (116 loc) · 4.26 KB
/
rental.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
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Car Rental</title>
<!-- Favicons -->
<link href="assets\img\favicon.png" rel="icon">
<!--About US CSS-->
<link rel="stylesheet" href="assets\css\taxi.css">
<link rel="stylesheet" href="assets\css\style.css">
<!--Font Awesom CSS-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<!-- header section starts -->
<header>
<div>
<!-- <img src="D:\travel\images\Safar_Logo.png" height="50px" width= "80px"> -->
<a href="index.html" class="logo"><span>S</span>afar</a>
</div>
<div id="menu-bar" class="fas fa-bars"></div>
<nav class="navbar">
<a href="index.html">home</a>
<a href="index.html#services">services</a>
<a href="index.html#review">review</a>
<a href="booking.html">book</a>
<a href="about.html">about us</a>
<a href="index.html#contact">contact</a>
</nav>
<div class="icons">
<i class="fa fa-user" id="login-btn"></i>
</div>
<!--<form action="" class="search-bar-container">
<input type="search" id="search-bar" placeholder="search here...">
<label for="search-bar" class="fas fa-search"></label>
</form>-->
</header>
<!-- header section ends -->
<!-- rental section starts -->
<section class="taxi">
<div class="imgBx">
<img src="assets\img\Rental.jpg" style="height: 600px; margin-top: 100px; " />
</div>
<div class="contentBx">
<div class="formBx">
<h2><b><strong>BOOK NOW</strong></b></h2>
<form action="rental.php" method="post">
<!--<div class="inputBx">
<span>From</span>
<input type="text" name="from" />
</div>
<div class="inputBx">
<span>To</span>
<input type="text" name="to" />
</div>-->
<div class="inputBx">
<span>City</span></br>
<select name="city" class="options">
<option value="selectcity">Select a City</option>
<option value="Delhi">New Delhi</option>
<option value="Gurugram">Gurugram</option>
<option value="Noida">Noida</option>
<option value="Pune">Pune</option>
<option value="Banglore">Banglore</option>
<option value="Mumbai">Mumbai</option>
</select>
</input>
</div>
<div class="inputBx">
<span>Departure</span>
<input type="date" name="datefrom" />
</div>
<div class="inputBx">
<span>Arrival</span>
<input type="date" name="dateto" />
</div>
<div class="inputBx">
<input type="submit" value="Book Now" name="submit" />
</div>
</form>
</div>
</div>
</section>
<!-- rental section ends -->
<!-- footer section -->
<!--<section class="footer">
<div class="box-container">
<div class="box">
<h3>about us</h3>
<p>
"Safar" is a very user friendly website which helps you explore your
travelling options widely and effectively. There is no denying that it
is pure fun. It helps you to grow as a human and understand yourself.
It also allows you to enjoy solitude and teaches one to respect all
cultures and societies.
</p>
</div>
<div class="box">
<h3>quick links</h3>
<a href="index.html">home</a>
<a href="index.html#services">services</a>
<a href="index.html#review">review</a>
<a href="booking.html">book</a>
<a href="about.html">About us</a>
<a href="index.html#contact">contact</a>
</div>
</div>
<h1 class="credit"> Created by <span> Group 29 </span> | all rights reserved! </h1>
</section>-->
<!-- footer section ends -->
<!--JS-->
<script src="assets\js\script.js"></script>
</body>
</html>