-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment.html
105 lines (103 loc) · 3.42 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Payment Form</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
.OR{
padding: 80px 120px;
}
.link{
border: 10px;
padding: 30px 150px;
cursor:pointer;
}
.cont{
padding: 110px 20px;
}
</style>
</head>
<body>
<table>
<tr>
<th><h1>PAYMENT THROUGH CARD</h1>
<div class="container">
<h1>CARD DETAILS</h1>
<div class="first-row">
<div class="owner">
<h3>Owner</h3>
<div class="input-field">
<input type="text">
</div>
</div>
<div class="cvv">
<h3>CVV</h3>
<div class="input-field">
<input type="password">
</div>
</div>
</div>
<div class="second-row">
<div class="card-number">
<h3>Card Number</h3>
<div class="input-field">
<input type="text">
</div>
</div>
</div>
<div class="third-row">
<h3>Expiry</h3>
<div class="selection">
<div class="date">
<select name="months" id="months">
<option value="Jan">Jan</option>
<option value="Feb">Feb</option>
<option value="Mar">Mar</option>
<option value="Apr">Apr</option>
<option value="May">May</option>
<option value="Jun">Jun</option>
<option value="Jul">Jul</option>
<option value="Aug">Aug</option>
<option value="Sep">Sep</option>
<option value="Oct">Oct</option>
<option value="Nov">Nov</option>
<option value="Dec">Dec</option>
</select>
<select name="years" id="years">
<option value="2020">2020</option>
<option value="2019">2019</option>
<option value="2018">2018</option>
<option value="2017">2017</option>
<option value="2016">2016</option>
<option value="2015">2015</option>
</select>
</div>
<div class="cards">
<img src="mc.png" alt="">
<img src="vi.png" alt="">
<img src="pp.png" alt="">
</div>
</div>
</div>
<a href="main.html">Confirm</a>
</div>
</th>
<th>
<h3 class="OR">OR</h3>
</th>
<th><h1>PAYMENT THROUGH UPI</h1>
<ul>
<div class="cont">
<h1 class="link"><a href="https://www.phonepe.com">PHONEPE</a></h1>
<h1 class="link" ><a href="https://paytm.com">PAYTM</a></h1>
<h1 class="link"><a href="https://pay.google.com">GOOGLE PAY</a></h1>
</div>
</ul>
</th>
</tr>
</table>
</body>
</html>