-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (107 loc) · 3.58 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
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
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Credit Card Site</title>
<!-- MDB icon -->
<link rel="icon" href="img/chip.svg" type="image/x-icon" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
<!-- Google Fonts Roboto -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap"
/>
<!-- MDB -->
<link rel="stylesheet" href="css/mdb.min.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body class="vh-100">
<div class="container h-100 text-white">
<div class="row d-flex align-items-center h-100">
<div class="col-md-6">
<div class="fade">
<h1 class="mb-4 opacity-90">Exclusive Offer</h1>
<h5 class="mb-4 opacity-80">Lorem Ipsum dolor sit amet</h5>
<p class="mb-4 opacity-70">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam
voluptates, quod, quia, voluptate quae voluptatem quidem quibusdam
voluptatum quos quas quia voluptate quae voluptatem quidem
quibusdam voluptatum quos quas
</p>
<a
class="btn btn-white btn-lg btn-rounded me-3 opacity-80"
href="#"
role="button"
data-ripple-color="hsl(218, 41%, 45%)"
>Buy Now</a
>
<a
class="btn btn-outline-white btn-lg btn-rounded me-3 opacity-80"
href="#"
role="button"
>Learn More</a
>
</div>
</div>
<div class="col-md-5 offset-md-1 position-relative">
<div
class="position-absolute shadow-5-strong fade fade-delay-small"
id="shape-1"
></div>
<div
class="position-absolute shadow-5-strong fade fade-delay-medium"
id="shape-2"
></div>
<div
class="card shadow-6 rounded-6 fade fade-delay-large"
id="card-custom"
>
<div class="card-body p-5 opacity-90 ls-widest">
<h2>
<strong> Platinum </strong>
<span class="fw-light">card</span>
</h2>
<div
class="card-footer border-0 px-5 opacity-90 ls-widest fw-light"
>
<img
src="./img/chip.svg"
alt="chip"
class="my-chip mb-5 position-absolute"
width="50px;"
/>
<h5 class="mb-5 my-card-num position-absolute">
1234 5678 9012 3456
</h5>
<p class="mb-2 position-absolute my-name">John Doe</p>
<p class="mb-5 position-absolute my-exp-date">12/24</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<script type="text/javascript" src="js/vanilla-tilt.js"></script>
<!-- Custom scripts -->
<script type="text/javascript">
VanillaTilt.init(document.querySelector("#card-custom"), {
startX: 45,
startY: 45,
max: 25,
speed: 400,
reset: false,
});
</script>
</body>
</html>