Skip to content

Commit 6524646

Browse files
author
rutvik
committedFeb 1, 2025
''
1 parent 5e67e71 commit 6524646

File tree

134 files changed

+16454
-1999
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+16454
-1999
lines changed
 

‎discount-code.html

+105
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Discount Code</title>
8+
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap" rel="stylesheet">
9+
<style>
10+
body {
11+
background: #eee;
12+
font-family: "Manrope", serif;
13+
}
14+
15+
.card {
16+
width: 350px;
17+
padding: 10px;
18+
border-radius: 20px;
19+
background: orange;
20+
border: none;
21+
color: #fff;
22+
height: 350px;
23+
display: flex;
24+
flex-direction: column;
25+
position: relative;
26+
align-items: center;
27+
justify-content: center;
28+
}
29+
30+
.container {
31+
height: 100vh;
32+
display: flex;
33+
align-items: center;
34+
justify-content: center;
35+
}
36+
37+
.card h1 {
38+
font-size: 48px;
39+
margin-bottom: 0px;
40+
margin-top: 0;
41+
}
42+
43+
.card i{
44+
font-size: 26px;
45+
}
46+
47+
.coupon-code{
48+
margin-top: 24px;
49+
border-radius: 8px;
50+
padding: 4px 10px;
51+
border: 1px dashed #ffffff;
52+
}
53+
54+
.card span {
55+
font-size: 28px;
56+
}
57+
58+
.image {
59+
position: absolute;
60+
opacity: .1;
61+
left: 0;
62+
top: 0;
63+
}
64+
65+
.image2 {
66+
position: absolute;
67+
bottom: 0;
68+
right: 0;
69+
opacity: .1;
70+
}
71+
72+
.btn {
73+
text-decoration: none;
74+
background-color: white;
75+
font-size: 16px;
76+
color: #000;
77+
padding: 12px 30px;
78+
border-radius: 10px;
79+
margin-top: 15px;
80+
}
81+
82+
.btn:hover {
83+
background-color: #000;
84+
color: white;
85+
}
86+
</style>
87+
</head>
88+
89+
<body>
90+
<div class="d-flex justify-content-center align-items-center container">
91+
<div class="d-flex card text-center">
92+
<div class="image"><img src="https://i.imgur.com/DC94rZe.png" width="150"></div>
93+
<div class="image2"><img src="https://i.imgur.com/DC94rZe.png" width="150"></div>
94+
<h1>30% OFF</h1>
95+
<span class="d-block">On Premium</span>
96+
<span class="d-block">Product</span>
97+
<div class="coupon-code mt-4"><small>Use Coupon code : upgrade30
98+
</small></div>
99+
100+
<a href="https://www.wrappixel.com/templates/category/angular-templates/?ref=353" class="btn" target="_blank">Get Now</a>
101+
</div>
102+
</div>
103+
</body>
104+
105+
</html>

‎docs.html

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<title>Spike Angular Free Template | Docs</title>
6+
<meta http-equiv="refresh"
7+
content="0; URL = 'https://wrappixel.github.io/free-documentation-wp/angular/spike/index.html'" />
8+
</head>
9+
10+
<body>
11+
<h1>Spike Angular Free Template</h1>
12+
<a href="https://wrappixel.github.io/free-documentation-wp/angular/spike/index.html">https://wrappixel.github.io/free-documentation-wp/angular/spike/index.html</a>
13+
</body>
14+
15+
</html>

0 commit comments

Comments
 (0)
Please sign in to comment.