-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbooking.html
63 lines (50 loc) · 1.88 KB
/
booking.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
<!DOCTYPE html>
<html>
<head>
<title>Book a Test Drive</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel = "icon" href ="images\logo.png" type = "image/x-icon">
<link rel="stylesheet" href="stylesheets\styleBooking.css">
</head>
<body>
<div class="bookTestDrive" id="sec1">
<div class="slider">
<figure>
<div class="slide">
<img src="https://hips.hearstapps.com/hmg-prod.s3.amazonaws.com/images/hyundai-1-1575903969.jpg" alt="hyundai logo">
</div>
<div class="slide">
<img src="https://autopolis.files.wordpress.com/2013/09/hyundai-pony-76-94a.jpg?w=584" alt="">
</div>
<div class="slide">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a1/Hyundai_Pony_1984_Utrecht.jpg/1200px-Hyundai_Pony_1984_Utrecht.jpg" alt="">
</div>
<div class="slide">
<img src="https://www.fitmycar.com/journal/wp-content/uploads/2016/10/Hyundai-Pony-1.jpg" alt="">
</div>
</figure>
</div>
<form class="tD" action="booking_2.html" method="get">
<h1>Book a Test Drive</h1>
<h4>Enter Your Personal Information</h4>
<br>
<label for="name"><b>Name <sup>*</sup></b></label>
<input type="text" placeholder="Name" name="Name" required>
<label for="mob"><b>Mobile Number <sup>*</sup></b></label>
<input type="tel" placeholder="Mobile Number" name="Mobile Number" maxlength="10" required>
<label for="select"><b>Select Your Car</b></label>
<select>
<option selected="selected"> Select a Car</option>
<option>Hyundai Tucson</option>
<option>Hyundai Elantra</option>
<option>Hyundai Creta</option>
<option>Hyundai Venue</option>
<option>Hyundai Grand i10</option>
<option>Hyundai Verna</option>
</select>
<button class="btn" type="Submit"><span class="span1">Next</span></button>
</form>
<div class="back"><button class="btn1"><a href="index1.html" style="text-decoration: none; color: white;"><span> HOME</span></button></div>
</div>
</body>
</html>