-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.39 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<title>Credit Card | Glassmorphism</title>
</head>
<body>
<section class="credit-card">
<div class="card">
<div class="front face absolute">
<img src="./assets/chip.svg" alt="Chip" id="chip" class="absolute"></img>
<img src="./assets/signal.svg" alt="Signal" id="signal" class="absolute"></img>
<img src="./assets/logo.svg" alt="Logo" id="logo" class="absolute"></img>
<p id="owner" class="absolute">DAN VERAS</p>
</div>
<div class="face back absolute">
<div id="graybar" class="absolute"></div>
<div id="card-info" class="absolute">
<p id="card-number">1234 5678 9999 0000</p>
<div class="flex">
<p class="flex informations">
<span class="label">MEMBER SINCE</span>
<span>01/01</span>
</p>
<p class="flex informations">
<span class="label">VALID THRU</span>
<span>12/29</span>
</p>
<p class="flex informations">
<span class="label">SECURITY CODE</span>
<span>000</span>
</p>
</div>
</div>
</div>
</div>
</section>
</body>
</html>