-
Notifications
You must be signed in to change notification settings - Fork 0
/
complete.html
48 lines (47 loc) · 2.2 KB
/
complete.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="./style.css">
<title>Frontend Mentor | Interactive card details form</title>
</head>
<body>
<header></header>
<div id="flex-container">
<div id="card-container">
<div id="back">
<img src="./assets/images/bg-card-back.png" alt="card back">
<span id="cvv-on-card"></span>
</div>
<div id="front">
<img src="./assets/images/bg-card-front.png" alt="card front">
<span id="card-number-on-card"></span>
<span id="name-on-card"></span>
<span id="date-on-card"></span>
<svg width="84" height="47" fill="none" xmlns="http://www.w3.org/2000/svg">
<ellipse cx="23.478" cy="23.5" rx="23.478" ry="23.5" fill="#FFF"/>
<path d="M83.5 23.5c0 5.565-4.507 10.075-10.065 10.075-5.559 0-10.065-4.51-10.065-10.075 0-5.565 4.506-10.075 10.065-10.075 5.558 0 10.065 4.51 10.065 10.075Z" stroke="#fff"/>
</svg>
</div>
</div>
</div>
<main id="confirmation">
<svg width="80" height="80" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="40" cy="40" r="40" fill="url(#a)"/>
<path d="M28 39.92 36.08 48l16-16" stroke="#fff" stroke-width="3"/>
<defs>
<linearGradient id="a" x1="-23.014" y1="11.507" x2="0" y2="91.507" gradientUnits="userSpaceOnUse">
<stop stop-color="#6348FE"/>
<stop offset="1" stop-color="#610595"/>
</linearGradient>
</defs>
</svg>
<span id="thanks">THANK YOU!</span>
<span id="info">We've added your card details.</span>
<button id="continue" class="button">Continue</button>
</main>
</body>
<script src="./app2.js"></script>
</html>