-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcar selection.html
93 lines (88 loc) · 2.32 KB
/
car selection.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
<html>
<head>
<style>
body{
background-image:url(interior.png);
background-size: cover;
background-position: center;
background-repeat:no-repeat;
}
#LPU{
padding:20px;
color:black;
font-size:90px;
text-align:center;
font-weight:bolder;
}
fieldset{
border:#213c4f 5px solid;
}
p.oblique
{
font-family: sans-serif;
}
input.ex
{
background-color: transparent;
font-size: 40px;
height: 50px;
width: 400px;
}
button.h
{
background-color: transparent;
font-weight: bolder;
font-size: 20px;
color:white;
height: 30px;
width: 250px;
}
</style>
<title>
Welcome
</title>
</head>
<body >
<div id="LPU">
<i>Rentalcars.com</i>
</div>
</br>
<hr color=white>
<marquee behavior=alternate scrollamount="3">
<img id="a1" onmouseover="bigImg()" onmouseout="normalImg()" src="innova.png" height="320" width="480">
<img id="b1" onmouseover="bigImg()" onmouseout="normalImg()" src="fortuner.png" height="320" width="480">
<img id="c1" onmouseover="bigImg()" onmouseout="normalImg()" src="scorpio.png" height="320" width="480">
<img id="d1" onmouseover="bigImg()" onmouseout="normalImg()" src="swift.png" height="320" width="480">
<img id="e1" onmouseover="bigImg()" onmouseout="normalImg()" src="city.png" height="320" width="480">
<img src="innova.png" height="320" width="480">
<img src="fortuner.png" height="320" width="480">
</marquee>
<hr color="#33FF86" />
<center>
<p style="font-weight:750;font-size:40px;font-family:verdana;color:rgb(0, 238, 255);">
<i>THANKS FOR CHOOSING US<br></i></p>
</center>
<fieldset>
<legend align="center" style="color:white;font-size:50px">Select Your Car</legend>
<center>
<input id="1" class="ex" list="locations" name="location">
<datalist id="locations">
<option value="TOYOTA FORTUNER">
<option value="TOYOTA INNOVA">
<option value="MAHINDRA SCORPIO">
<option value="SWIFT">
<option value="HONDA CITY">
</datalist><br><br><br>
</center>
<center>
<button><a href="lastpage.html"target="_blank"style="text-decoration:none;color:black;" >BOOK CAR</a></button>
<button><a href="homepage.html"target="_blank"style="text-decoration:none;color:black;" >HOME</a></button>
</center>
</fieldset>
}
<p id="pass"></p>
<footer>
<marquee><b> Copyright © 2021 Rentalcars.com // All Right Reserved </p></b></marquee>
</footer>
</body>
</html>