-
Notifications
You must be signed in to change notification settings - Fork 0
/
pay.html
97 lines (77 loc) · 2.98 KB
/
pay.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
<!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">
<!-- custom css file link -->
<link rel="stylesheet" href="style.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="Full Name">
</div>
<div class="inputBox">
<span>email :</span>
<input type="email" placeholder="[email protected]">
</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="City">
</div>
<div class="flex">
<div class="inputBox">
<span>state :</span>
<input type="text" placeholder="State">
</div>
<div class="inputBox">
<span>zip code :</span>
<input type="text" placeholder="54000">
</div>
</div>
</div>
<div class="col">
<h3 class="title">payment</h3>
<div class="inputBox">
<span>cards accepted :</span>
<img src="images/card_img.png" alt="">
</div>
<div class="inputBox">
<span>name on card :</span>
<input type="text" placeholder="Name">
</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="2022">
</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>