-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment.html
68 lines (63 loc) · 2.28 KB
/
payment.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>payment page</title>
body
{
color:sea;
}
</head>
<body >
<h1>PAYMENT FORM</h1>
<h2>Contact Information</h2>
<form>
<label for="name">NAME:</label>
<input type="text" id="name" name=" cname"><br>
<fieldset>
<legend>GENDER</legend>
<input type="radio" id="male" name="gender">
<label for="male"> Male</label>
<input type="radio" id="female" name="gender">
<label for="female"> Female</label>
<input type="radio" id="others" name="gender">
<label for="others"> Others</label>
</fieldset>
<br>
<label for="Address" > Address:</label>
<textarea id="Address" cols="100" rows="10"></textarea><br><br>
<label for="email">Email:</label>
<input type="email" name="email" id="email"><br><br>
<label for="pincode">Pincode:</label>
<input type="number" name="pincode" id="pincode">
<hr>
<h2> CAR CATEGORY:</h2>
<label for="card"> Select a option (CAR Choice):</label>
<select name="cars" id="card">
<option value="Volvo"> Volvo</option>
<option value="MErcerdes"> MErcerdes</option>
<option value="SWIFT"> SWIFT</option>
<option value="i10">i10</option>
</select>
<HR></HR>
<h1>PAYMENT INFORMATION</h1>
<label for="card"> Select a option:</label>
<select name="cards" id="card">
<option value="Sbi"> SBI</option>
<option value="visa"> Visa</option>
<option value="CASh"> CASH</option>
<option value="EMi">EMI</option>
</select>
<br> <br>
<label for="cardno"> CARD NUMBER </label>
<input type="text" name="card name" id="CARD NUMBER ">
<br><br>
<label for=" exp"> EXPIRATION DATE:</label>
<input type="datetime" name="exp" id="exp">
<br><br>
<input type="button" value=" PAY NOW">
</form>
</body>
</html>