-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
161 lines (151 loc) · 6.95 KB
/
index.html
File metadata and controls
161 lines (151 loc) · 6.95 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Campaign Countdown Popup</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Popup Overlay -->
<div class="popup-overlay">
<div class="popup-container">
<!-- Close Button -->
<button class="close-button">
<i class="fas fa-times"></i>
</button>
<!-- Campaign Content -->
<div class="campaign-content">
<!-- Left Section -->
<div class="campaign-left">
<span class="campaign-badge">
<i class="fas fa-bolt"></i>
Special Offer
</span>
<h1>Last Chance Summer Sale!</h1>
<p class="campaign-description">
Get up to 50% off on our premium products.
Don't miss this amazing opportunity!
</p>
<!-- Countdown Timer -->
<div class="countdown-container">
<div class="countdown-item">
<span class="countdown-number" data-unit="days">03</span>
<span class="countdown-label">Days</span>
</div>
<div class="countdown-item">
<span class="countdown-number" data-unit="hours">00</span>
<span class="countdown-label">Hours</span>
</div>
<div class="countdown-item">
<span class="countdown-number" data-unit="minutes">00</span>
<span class="countdown-label">Minutes</span>
</div>
<div class="countdown-item">
<span class="countdown-number" data-unit="seconds">00</span>
<span class="countdown-label">Seconds</span>
</div>
</div>
<!-- Progress Bar -->
<div class="progress-container">
<div class="progress-bar">
<div class="progress-fill"></div>
</div>
<div class="progress-stats">
<span class="sold-count">47</span> items sold
<span class="remaining-count">53</span> items remaining
</div>
</div>
<!-- Social Proof -->
<div class="social-proof">
<div class="recent-buyers">
<img src="https://i.pravatar.cc/150?img=1" alt="Buyer" class="buyer-avatar">
<img src="https://i.pravatar.cc/150?img=2" alt="Buyer" class="buyer-avatar">
<img src="https://i.pravatar.cc/150?img=3" alt="Buyer" class="buyer-avatar">
<div class="buyer-text">
12 people bought in the last 24 hours
</div>
</div>
<div class="trust-badges">
<span><i class="fas fa-shield-alt"></i> Secure Payment</span>
<span><i class="fas fa-truck"></i> Fast Delivery</span>
<span><i class="fas fa-undo"></i> 30 Day Returns</span>
</div>
</div>
</div>
<!-- Right Section -->
<div class="campaign-right">
<!-- Product Showcase -->
<div class="product-showcase">
<div class="product-image">
<img src="https://images.unsplash.com/photo-1523275335684-37898b6baf30" alt="Premium Watch">
<span class="discount-badge">50% OFF</span>
</div>
<div class="price-container">
<span class="original-price">$299.99</span>
<span class="discounted-price">$149.99</span>
</div>
<div class="product-features">
<div class="feature">
<i class="fas fa-check"></i>
Premium Quality
</div>
<div class="feature">
<i class="fas fa-check"></i>
2 Year Warranty
</div>
<div class="feature">
<i class="fas fa-check"></i>
Free Shipping
</div>
</div>
</div>
<!-- CTA Section -->
<div class="cta-section">
<button class="cta-button">
<i class="fas fa-shopping-cart"></i>
Buy Now
</button>
<p class="guarantee-text">
<i class="fas fa-lock"></i>
Secure payment and 30-day money-back guarantee
</p>
</div>
<!-- Trust Indicators -->
<div class="trust-indicators">
<div class="trust-item">
<i class="fas fa-truck"></i>
<span>Fast Delivery</span>
</div>
<div class="trust-item">
<i class="fas fa-undo"></i>
<span>Easy Returns</span>
</div>
<div class="trust-item">
<i class="fas fa-headset"></i>
<span>24/7 Support</span>
</div>
</div>
</div>
</div>
</div>
<!-- Exit Intent -->
<div class="exit-intent">
<div class="exit-content">
<h3>Wait!</h3>
<p>Don't miss out on an extra 10% discount!</p>
<button class="stay-button">Accept Offer</button>
<button class="leave-button">Continue</button>
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div class="footer-bottom">
<p>Created by <a href="https://harmoncode.com" target="_blank">HarmonCode</a></p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>