-
Notifications
You must be signed in to change notification settings - Fork 0
/
CarRental3.html
107 lines (106 loc) · 1.75 KB
/
CarRental3.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
<!DOCTYPE html>
<html>
<head>
<style>
#k
{
color:red;
font-size:40px;
}
select
{
width:200px;
padding:5px;
margin:2px 0 22px 0;
}
input[type=text]
{
width:200px;
padding:8px;
margin:2px 0 22px 0;
}
input[type=email]
{
width:200px;
padding:8px;
margin:2px 0 22px 0;
}
body
{
background-image:url(car2.jpeg);
}
body
{
padding-top:20px;
padding-bottom:30px;
padding-right:400px;
padding-left:400px;
}
form
{
margin:40px;
max-width:600px;
padding:50px;
background-color:lightyellow;
font-size:30px;
}
#shivam
{
color:red;
font-size:35px;
}
</style>
</head>
<body>
<marquee id="shivam" behavior="scroll" direction="left"> FILL THE USER INFORMATION</marquee>
<form action="CarRental5.html">
<table>
<tr>
<td id="k">EMAIL ID</br>
</tr>
<tr>
<td><input type="email" name="shivam" /></td>
</tr>
<tr>
<td id="k">phone Number</br>
</tr>
<tr>
<td><input type="text" name="shivam" /></td>
</tr>
<tr>
<td id="k">Gender <input type="radio" name="shivam" />M<input type="radio" name="shivam" />F</td>
</tr>
<td id="k">Age</br>
</tr>
<tr>
<td><input type="text" name="shivam" /></td>
</tr>
<tr>
<td id="k">Adress</td>
</tr>
<tr>
<td id="k"><input type="text" name="shivam" /></td>
</tr>
<tr>
<td id="k">Nationality</td>
</tr>
<tr>
<td id="a"><label for="cars" name="locations"></label>
<select id="l" name="shivam">
<option value="city">phagwara</option>
<option value="pha">Delhi</option>
<option value="phagw">Ara</option>
</select></td>
</tr>
<tr>
<td id="k">Insurance <input type="radio" name="shivam" />yes<input type="radio" name="shivam" />No</td>
</tr>
<tr>
<td id="k"><input type="submit" value="make payment"name="shivam" /></td>
</tr>
<tr>
<td id="k"></td>
</tr>
</table>
</body>
</html>