-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbookride.html
58 lines (51 loc) · 1.67 KB
/
bookride.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Book a ride</title>
<link rel="icon" href="./images/pngegg.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<center>
<img src="./images/pngegg.png" alt="logo" width="130" height="150">
<br><br>
<h3>Book Your Test Drive!</h3>
<form class="" action="mailto:[email protected]" method="post" enctype="text/plain">
<label>Enter Your Name : </label> <input class="input" type="text" name="name" value="">
<br>
<br>
<label>Enter Your Email : </label> <input type="email" name="email" value="" class="input">
<br>
<br>
<label>Enter Phone num : </label> <input type="number" name="phone number" value="" class="input">
<br><br>
<label>Enter AAdhar No : </label> <input type="number" name="aadhar no" value="" class="input">
<br><br>
<label>Enter your Address </label><br>
<textarea name="address" rows="8" cols="80" class="text_input"></textarea>
<br>
<input type="submit">
</form>
</center>
</body>
</html>
<style>
body {
background-color: black;
color: white;
}
.input {
width: 300px;
height: 40px;
border: 2px;
border-color: red;
border-radius: 100px;
border-style: solid;
}
.text_input {
border: 2px;
border-color: red;
border-style: solid;
border-radius: 70px;
}
</style>