-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpayment.html
78 lines (74 loc) · 1.87 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
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Responsive Payment getway form de# Hindi</title>
<link rel="stylesheet" type="text/css" href="payment.css">
</head>
<body>
<header>
<div class="container">
<div class="left">
<h3>BILLING ADDRESS</h3>
<form>
Full name
<input type="text" name="" placeholder="Enter name">
Email
<input type="text" name="" placeholder="Enter email">
Address
<input type="text" name="" placeholder="Enter address">
City
<input type="text" name="" placeholder="Enter City">
<div id="zip">
<label>
State
<select>
<option>Choose State..</option>
<option>Rajasthan</option>
<option>Hariyana</option>
<option>Uttar Pradesh</option>
<option>Madhya Pradesh</option>
</select>
</label>
<label>
Zip code
<input type="number" name="" placeholder="Zip code">
</label>
</div>
</form>
</div>
<div class="right">
<h3>PAYMENT</h3>
<form>
Accepted Card <br>
<img src="img/card1.png" width="100">
<img src="img/card2.png" width="50">
<br><br>
Credit card number
<input type="text" name="" placeholder="Enter card number">
Exp month
<input type="text" name="" placeholder="Enter Month">
<div id="zip">
<label>
Exp year
<select>
<option>Choose Year..</option>
<option>2022</option>
<option>2023</option>
<option>2024</option>
<option>2025</option>
</select>
</label>
<label>
CVV
<input type="number" name="" placeholder="CVV">
</label>
</div>
</form>
<input type="submit" name="" value="Proceed to Checkout">
</div>
</div>
</header>
</body>
</html>