-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.html
53 lines (43 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/payment.css">
</head>
<body>
<div class="container">
<form action="">
<div class="row">
<div class="col">
<h3 class="title">payment details</h3>
<div class="inputbox">
<span>cards accepted</span>
<img src="image/card1.png"><br>
     <input type="radio" id="crd">
<label for="crd">         </label>
<input type="radio">
</div>
<div class="inputbox">
<span>card holder name</span>
<input type="text" placeholder="enter name">
</div>
<div class="inputbox">
<span>credit card number</span>
<input type="number" placeholder="1111-2222-3333-4444">
</div>
<div class="inputbox">
<span>CVN</span>
<input type="text" placeholder="123">
</div>
<div class="inputbox">
<span>expiration date</span>
<input type="number" placeholder="MM/YY">
</div>
<input type="submit" value="procced to checkout" class=submit-btn>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>