Untitled
unknown
plain_text
9 months ago
14 kB
15
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You - Special Offer</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
.container {
max-width: 600px;
width: 100%;
}
.thank-you-section {
background: white;
border-radius: 20px;
padding: 40px;
text-align: center;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
margin-bottom: 30px;
}
.thank-you-section h1 {
color: #333;
font-size: 2.5em;
margin-bottom: 15px;
}
.thank-you-section p {
color: #666;
font-size: 1.1em;
margin-bottom: 30px;
}
.reveal-btn {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
padding: 18px 45px;
font-size: 1.2em;
font-weight: bold;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}
.reveal-btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}
.offer-section {
background: white;
border-radius: 15px;
padding: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
display: none;
animation: slideDown 0.5s ease;
}
.offer-section.active {
display: block;
}
@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.offer-header {
text-align: center;
margin-bottom: 15px;
}
.offer-header h2 {
color: #333;
font-size: 1.3em;
margin-bottom: 0;
}
.name-highlight {
color: #667eea;
font-weight: bold;
}
.offer-items {
background: #f8f9ff;
border-radius: 12px;
padding: 15px;
margin-bottom: 15px;
}
.offer-item {
display: flex;
align-items: center;
margin-bottom: 10px;
font-size: 0.9em;
color: #333;
}
.offer-item:last-child {
margin-bottom: 0;
}
.checkmark {
color: white;
background: #28a745;
font-size: 0.9em;
margin-right: 10px;
font-weight: bold;
width: 22px;
height: 22px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.pricing {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 10px;
padding: 15px;
margin-bottom: 15px;
text-align: center;
box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}
.pricing-label {
font-size: 0.85em;
color: white;
margin-bottom: 8px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.pricing-values {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
}
.original-price {
font-size: 1.3em;
color: rgba(255, 255, 255, 0.7);
text-decoration: line-through;
font-weight: 600;
}
.special-price {
font-size: 2.2em;
color: white;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.savings {
background: #ffc107;
color: #333;
padding: 4px 12px;
border-radius: 20px;
font-size: 0.8em;
font-weight: bold;
box-shadow: 0 3px 10px rgba(255, 193, 7, 0.4);
}
.timer {
background: #fff3cd;
border: 2px solid #ffc107;
border-radius: 8px;
padding: 8px 12px;
text-align: center;
margin-bottom: 15px;
font-size: 0.8em;
color: #856404;
font-weight: bold;
}
.timer-clock {
font-size: 1.1em;
color: #dc3545;
margin-left: 5px;
}
.claim-btn {
width: 100%;
background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
color: white;
border: none;
padding: 15px;
font-size: 1.1em;
font-weight: bold;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}
.claim-btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(40, 167, 69, 0.6);
}
.faq-section {
margin-top: 20px;
padding-top: 20px;
border-top: 2px solid #eee;
}
.faq-header {
text-align: center;
font-size: 1.2em;
color: #333;
margin-bottom: 12px;
}
.faq-item {
margin-bottom: 8px;
border: 1px solid #eee;
border-radius: 6px;
overflow: hidden;
}
.faq-question {
background: #f8f9ff;
padding: 12px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: 600;
font-size: 0.85em;
color: #333;
transition: background 0.3s ease;
}
.faq-question:hover {
background: #eef1ff;
}
.faq-icon {
font-size: 1em;
color: #667eea;
transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
transform: rotate(180deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
background: white;
color: #666;
font-size: 0.8em;
line-height: 1.5;
}
.faq-item.active .faq-answer {
max-height: 500px;
padding: 12px;
}
</style>
</head>
<body>
<div class="container">
<div class="thank-you-section">
<h1>🎉 Thank You!</h1>
<p>We appreciate your interest. We have an exclusive offer just for you!</p>
<button class="reveal-btn" onclick="revealOffer()">🎁 Click Here to Reveal Your Special Offer</button>
</div>
<div class="offer-section" id="offerSection">
<div class="offer-header">
<h2>One Time Offer for <span class="name-highlight" id="userName">[NAME]</span></h2>
</div>
<div class="offer-items">
<div class="offer-item">
<span class="checkmark">✓</span>
<span>3 ATS-Friendly Resume Templates</span>
</div>
<div class="offer-item">
<span class="checkmark">✓</span>
<span>1 Resume Building Course by Senior HR</span>
</div>
<div class="offer-item">
<span class="checkmark">✓</span>
<span>Cover Letter Templates + Cold Email Scripts</span>
</div>
</div>
<div class="pricing">
<div class="pricing-label">Special Price:</div>
<div class="pricing-values">
<div class="original-price">₹999</div>
<div class="special-price">₹99</div>
<div class="savings">Save 90%</div>
</div>
</div>
<div class="timer">
⚡ This offer expires in <span class="timer-clock" id="countdown">15:00</span> minutes
</div>
<button class="claim-btn" onclick="claimOffer()">Claim This Offer Now!</button>
<div class="faq-section">
<h3 class="faq-header">Frequently Asked Questions</h3>
<div class="faq-item">
<div class="faq-question" onclick="toggleFaq(this)">
<span>What's included in the ATS-Friendly Resume Templates?</span>
<span class="faq-icon">▼</span>
</div>
<div class="faq-answer">
You'll receive 3 professionally designed resume templates that are optimized for Applicant Tracking Systems (ATS). These templates are formatted to pass through ATS filters and increase your chances of getting noticed by recruiters.
</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFaq(this)">
<span>Who teaches the Resume Building Course?</span>
<span class="faq-icon">▼</span>
</div>
<div class="faq-answer">
The course is taught by a Senior HR professional with over 10 years of experience in recruitment. You'll learn insider tips on what recruiters look for and how to craft a resume that stands out.
</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFaq(this)">
<span>How will I receive the templates and course?</span>
<span class="faq-icon">▼</span>
</div>
<div class="faq-answer">
Immediately after purchase, you'll receive an email with download links for all templates and access credentials for the online course. Everything is delivered digitally for instant access.
</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFaq(this)">
<span>Is this really a one-time offer?</span>
<span class="faq-icon">▼</span>
</div>
<div class="faq-answer">
Yes! This special pricing of ₹99 (90% off) is only available right now. Once you leave this page or the timer expires, the offer will no longer be available at this price.
</div>
</div>
<div class="faq-item">
<div class="faq-question" onclick="toggleFaq(this)">
<span>What if I need help using the templates?</span>
<span class="faq-icon">▼</span>
</div>
<div class="faq-answer">
The Resume Building Course includes detailed instructions on how to use and customize the templates. Additionally, you'll have access to our support team via email for any questions you may have.
</div>
</div>
</div>
</div>
</div>
<script>
let timeLeft = 15 * 60;
let timerInterval;
function revealOffer() {
document.getElementById('offerSection').classList.add('active');
document.querySelector('.thank-you-section').style.display = 'none';
startCountdown();
}
function startCountdown() {
timerInterval = setInterval(() => {
if (timeLeft <= 0) {
clearInterval(timerInterval);
document.getElementById('countdown').textContent = '00:00';
return;
}
timeLeft--;
const minutes = Math.floor(timeLeft / 60);
const seconds = timeLeft % 60;
document.getElementById('countdown').textContent =
`${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;
}, 1000);
}
function toggleFaq(element) {
const faqItem = element.parentElement;
const isActive = faqItem.classList.contains('active');
document.querySelectorAll('.faq-item').forEach(item => {
item.classList.remove('active');
});
if (!isActive) {
faqItem.classList.add('active');
}
}
function claimOffer() {
alert('Redirecting to payment page... (This would connect to your payment gateway)');
}
</script>
</body>
</html>Editor is loading...
Leave a Comment