-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcard.html
More file actions
97 lines (84 loc) · 3.93 KB
/
card.html
File metadata and controls
97 lines (84 loc) · 3.93 KB
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">
<title>card</title>
<style>
img{height: 57px;width: 58px;}
.button {
display: inline-block;
padding: 15px 25px;
font-size: 24px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: #4CAF50;
border: none;
border-radius: 15px;
box-shadow: 0 9px #999;
}
.button:hover {background-color: #3e8e41}
.button:active {
background-color: #3e8e41;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
</style>
</head>
<body>
<h1>Total</h1>
<div class="card">
<div class="card-body">
<div class="row">
<!-- <div class="col" style="background-coljor:blue ;"> -->
<form>
<label for="first name">first name</label>
<input type="text">
<label for="text">last name</label>
<input type="text">
<h2>card number</h2>
<label for="text">card number</label>
<input type="text" value="" checkbox>
<input class="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio2" value="option2">
<!-- <label for="text">card </label>
<input type="text" value="" checkbox>
<input class="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio2" value="option2"> -->
<label for="text">cvv</label>
<input type="text" value="" checkbox>
<input class="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio2" value="option2">
<!-- <div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="inlineRadioOptions" id="inlineRadio2" value="option2">
<label class="form-check-label" for="inlineRadio2">cash</label>
</div> --><br/><br/>
<!-- <div class="container"> -->
<!-- <div class="row"> -->
<!-- <div class="col"> -->
<!-- <input type="date"> -->
<img src="images/pay.png" alt="">
<img src="images/visa.png" alt="">
<img src="images/money.png" alt="">
<img src="images/mastercard.png" alt="">
<img src="images/liqpay.png" alt="">
<!-- </div> -->
<!-- <div class="col"> -->
<!-- <img src="images/pay.png" alt="">
<img src="images/visa.png" alt="">
<img src="images/money.png" alt="">
<img src="images/mastercard.png" alt="">
<img src="images/liqpay.png" alt=""> -->
<input type="date">
<!-- </div> -->
<!-- </div> -->
</div><!-- <input type="date"> -->
</form><br/>
<button class="button">Submit</button>
</div>
</div>
</div>
</div>
</body>
</html>