-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 2.06 KB
/
index.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
<!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 Form</title>
<link rel="stylesheet" href="Payment Form.css">
</head>
<body>
<div class="container">
<form action="">
<h1 style="color: rgba(110, 110, 110, 0.959);" class="main_heading" >Payment Form</h1>
<p>Required Files are followed by *</p>
<h2>Contact Information</h2>
<p>Name: * <input type="text" name="name" placeholder="Shivam Bhavsar" required></p>
<fieldset>
<legend>Gender *</legend>
<p>
Male <input type="radio" name="gender" id="male" required>
Female <input type="radio" name="gender" id="female" required>
Netural<input type="radio" name="gender" id="netural" required>
</p>
</fieldset>
<p>Address: <textarea name="address" id="address" cols="100" rows="8"></textarea></p>
<p>Email:* <input type="email" name="email" id="email" required placeholder="[email protected]"></p>
<p>Pincode:* <input type="number" name="pincode" id="pincode" required></p>
<hr>
<h2>Payment Information</h2>
<p>Card Type:*
<select name="card_type" id="card_type" required>
<option value="">--Select a Card Type--</option>
<option value="visa">Visa</option>
<option value="mastercard">MasterCard</option>
<option value="Rupay">Rupay</option>
</select>
</p>
<p>
Card Number * <input type="number" name="card_number" id="card_number" required>
</p>
<p>
Expiration Date: * <input type="date" name="exp_date" id="exp_date" required>
</p>
<p>CVV * <input type="password" name="CVV" id="CVV" required></p>
<input type="submit" value="Pay Now">
</form>
</div>
</body>
</html>