-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathdiscount-code.html
116 lines (104 loc) · 2.51 KB
/
discount-code.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
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Discount Code</title>
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap"
rel="stylesheet"
/>
<style>
body {
background: #eee;
font-family: "Manrope", serif;
}
.card {
width: 350px;
padding: 10px;
border-radius: 20px;
background: orange;
border: none;
color: #fff;
height: 350px;
display: flex;
flex-direction: column;
position: relative;
align-items: center;
justify-content: center;
}
.container {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.card h1 {
font-size: 48px;
margin-bottom: 0px;
margin-top: 0;
}
.card i {
font-size: 26px;
}
.coupon-code {
margin-top: 24px;
border-radius: 8px;
padding: 4px 10px;
border: 1px dashed #ffffff;
}
.card span {
font-size: 28px;
}
.image {
position: absolute;
opacity: 0.1;
left: 0;
top: 0;
}
.image2 {
position: absolute;
bottom: 0;
right: 0;
opacity: 0.1;
}
.btn {
text-decoration: none;
background-color: white;
font-size: 16px;
color: #000;
padding: 12px 30px;
border-radius: 10px;
margin-top: 15px;
}
.btn:hover {
background-color: #000;
color: white;
}
</style>
</head>
<body>
<div class="d-flex justify-content-center align-items-center container">
<div class="d-flex card text-center">
<div class="image">
<img src="https://i.imgur.com/DC94rZe.png" width="150" />
</div>
<div class="image2">
<img src="https://i.imgur.com/DC94rZe.png" width="150" />
</div>
<h1>30% OFF</h1>
<span class="d-block">On Premium</span>
<span class="d-block">Product</span>
<div class="coupon-code mt-4">
<small>Use Coupon code : upgrade30 </small>
</div>
<a
href="https://www.wrappixel.com/templates/category/nextjs-templates/?ref=376"
class="btn"
target="_blank"
>Get Now</a
>
</div>
</div>
</body>
</html>