-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.html
83 lines (76 loc) · 2.7 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
<!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" />
<link rel="stylesheet" href="paystyle.css" />
</head>
<body>
<div class="container">
<form action="">
<div class="row">
<div class="col">
<h3 class="title">billing address</h3>
<div class="inputBox">
<span>full name :</span>
<input type="text" placeholder="Amarjot Singh Phull" />
</div>
<div class="inputBox">
<span>email :</span>
<input type="email" placeholder="phullsinghamarjot@gmail.com" />
</div>
<div class="inputBox">
<span>address :</span>
<input type="text" placeholder="room - street - locality" />
</div>
<div class="inputBox">
<span>city :</span>
<input type="text" placeholder="Ulhasnagar" />
</div>
<div class="flex">
<div class="inputBox">
<span>state :</span>
<input type="text" placeholder="Maharashtra" />
</div>
<div class="inputBox">
<span>zip code :</span>
<input type="text" placeholder="123 456" />
</div>
</div>
</div>
<div class="col">
<h3 class="title">payment</h3>
<div class="inputBox">
<span>cards accepted :</span>
<img src="card_img (3).png" />
</div>
<div class="inputBox">
<span>name on card :</span>
<input type="text" placeholder="Mr.Amarjot Singh" />
</div>
<div class="inputBox">
<span>credit card number :</span>
<input type="number" placeholder="1111-2222-3333-4444" />
</div>
<div class="inputBox">
<span>exp month :</span>
<input type="text" placeholder="January" />
</div>
<div class="flex">
<div class="inputBox">
<span>exp year :</span>
<input type="number" placeholder="2028" />
</div>
<div class="inputBox">
<span>CVV :</span>
<input type="text" placeholder="1234" />
</div>
</div>
</div>
</div>
<input type="submit" value="proceed to checkout" class="submit-btn" />
</form>
</div>
</body>
</html>