-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (70 loc) · 2.17 KB
/
index.html
File metadata and controls
75 lines (70 loc) · 2.17 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
<!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>Credit Card UI Design</title>
<style></style>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<div class="container">
<header>
<span class="logo">
<img src="images/logo.png" alt="MasterCard Logo" />
<h5>Master Card</h5>
</span>
<img src="images/chip.png" alt="Credit Card Chip" class="chip" />
</header>
<div class="card-details">
<div class="name-number">
<h6>Card Number</h6>
<h5 class="number">8050 5040 2030 3020</h5>
<h5 class="name">Mr. nor1vin</h5>
</div>
<div class="valid-date">
<h6>Valid Thru</h6>
<h5>12/28</h5>
</div>
</div>
</div>
<div class="input-fields">
<div class="input-group">
<input
type="text"
id="cardNumberInput"
maxlength="19"
placeholder=" "
/>
<label for="cardNumberInput">Card Number</label>
</div>
<div class="input-group">
<input type="text" id="cardNameInput" placeholder=" " />
<label for="cardNameInput">Cardholder Name</label>
</div>
<div class="input-group">
<input type="text" id="cardExpiryInput" maxlength="5" placeholder=" " />
<label for="cardExpiryInput">MM/YY</label>
</div>
</div>
<div class="card-style-toggle">
<button data-bg="bg-1">Background 1</button>
<button data-bg="bg-2">Background 2</button>
<button data-bg="bg-3">Background 3</button>
<button data-bg="bg-4">Background 4</button>
<button data-bg="bg-5">Background 5</button>
</div>
<footer>
<p>
Built with LOVE by
<a href="https://github.com/CodingNORVIN" target="_blank">nor1vin</a>
</p>
</footer>
<script src="script.js"></script>
</body>
</html>