🎁 New Year & Christmas Dollar Giveaway 🎉

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>BestGoods - Best Electronics Since 2011</title>

    <style>

        body {

            margin: 0;

            font-family: Arial, sans-serif;

            background-color: #ffffff;

            color: #333;

        }

        header {

            background: linear-gradient(90deg, #0056b3, #008cff);

            color: white;

            padding: 20px;

            display: flex;

            align-items: center;

            justify-content: space-between;

        }

        header h1 {

            font-size: 2.5rem;

            font-weight: bold;

            margin: 0;

            text-align: left;

        }

        header nav {

            display: flex;

        }

        header nav a {

            color: white;

            text-decoration: none;

            padding: 10px 20px;

            margin-left: 10px;

            font-size: 1rem;

            font-weight: bold;

            border-radius: 5px;

            transition: background-color 0.3s;

        }

        header nav a:hover {

            background-color: #004095;

        }

        .giveaway-section {

            background: #e9f2ff;

            color: #0056b3;

            padding: 50px 20px;

            text-align: center;

        }

        .giveaway-section h2 {

            font-size: 2.5rem;

            margin-bottom: 20px;

        }

        .giveaway-section p {

            font-size: 1.2rem;

            margin-bottom: 30px;

        }

        .gift-boxes {

            display: flex;

            justify-content: center;

            gap: 20px;

            margin-top: 20px;

        }

        .gift-box {

            background: white;

            border: 2px solid #0056b3;

            border-radius: 10px;

            width: 200px;

            padding: 20px;

            text-align: center;

            transition: transform 0.3s;

        }

        .gift-box:hover {

            transform: scale(1.05);

        }

        .gift-box img {

            width: 100%;

            border-radius: 10px;

            margin-bottom: 15px;

        }

        .win-button {

            display: inline-block;

            margin-top: 10px;

            padding: 10px 20px;

            background-color: #0056b3;

            color: white;

            text-decoration: none;

            border-radius: 5px;

            font-size: 1rem;

            font-weight: bold;

            transition: background-color 0.3s, transform 0.2s;

        }

        .win-button:hover {

            background-color: #004095;

            transform: scale(1.1);

        }

        footer {

            text-align: center;

            background: #0056b3;

            color: white;

            padding: 20px 0;

            font-size: 0.9rem;

        }

        footer a {

            color: #ffffff;

            text-decoration: none;

            font-weight: bold;

        }

        footer a:hover {

            text-decoration: underline;

        }

        /* Modal Styles */

        .modal {

            display: none;

            position: fixed;

            z-index: 10;

            left: 0;

            top: 0;

            width: 100%;

            height: 100%;

            background-color: rgba(0, 0, 0, 0.5);

            justify-content: center;

            align-items: center;

        }

        .modal-content {

            background: white;

            padding: 30px;

            text-align: center;

            border-radius: 10px;

            border: 2px solid #0056b3;

            width: 300px;

        }

        .modal-content h3 {

            font-size: 1.5rem;

            margin-bottom: 20px;

            color: #0056b3;

        }

        .modal-content .claim-button {

            background: #0056b3;

            color: white;

            padding: 10px 20px;

            text-decoration: none;

            border-radius: 5px;

            font-size: 1rem;

            font-weight: bold;

        }

        .modal-content .claim-button:hover {

            background: #004095;

        }

        .close-button {

            background: #dc3545;

            color: white;

            padding: 5px 10px;

            border: none;

            border-radius: 5px;

            font-size: 1rem;

            cursor: pointer;

            position: absolute;

            top: 10px;

            right: 10px;

        }

    </style>

</head>

<body>


<header>

    <h1>BestGoods</h1>

    <nav>

        <a href="YOUR ADSTERRA LINK" target="_blank">Home</a>

        <a href="YOUR ADSTERRA LINK" target="_blank">Products</a>


        <a href="YOUR ADSTERRA LINK" target="_blank">About</a>

    </nav>

</header>


<section class="giveaway-section">

    <h2>🎁 New Year & Christmas $500 Giveaway 🎉</h2>

    <p>Celebrate the holidays with us! Participate in our exciting giveaway and win up to $500. Offer valid until December 31, 2024!</p>

    <div class="gift-boxes">

        <div class="gift-box">

            <img src="https://m.media-amazon.com/images/I/31EoE4DE3sL._AC_.jpg" alt="Gift Box 1">

            <a href="YOUR ADSTERRA LINK" class="win-button" onclick="showModal('$20')">Win & Claim</a>

        </div>

        <div class="gift-box">

            <img src="https://m.media-amazon.com/images/I/31EoE4DE3sL._AC_.jpg" alt="Gift Box 2">

            <a href="YOUR ADSTERRA LINK" class="win-button" onclick="showModal('$30')">Win & Claim </a>

        </div>

        <div class="gift-box">

            <img src="https://m.media-amazon.com/images/I/31EoE4DE3sL._AC_.jpg" alt="Gift Box 3">

            <a href="YOUR ADSTERRA LINK" class="win-button" onclick="showModal('$50')">Win & Claim</a>

        </div>

    </div>

</section>


<footer>

    &copy; 2024 BestGoods. All rights reserved. | <a href="YOUR ADSTERRA LINK" target="_blank">Visit our website</a>

</footer>


<!-- Modal -->

<div id="modal" class="modal">

    <div class="modal-content">

        <button class="close-button" onclick="closeModal()">X</button>

        <h3>Congratulations! You’ve Won <span id="winning-amount"></span></h3>


        <a href="YOUR ADSTERRA LINK" target="_blank" class="claim-button">Sign Up For Claim</a>

    </div>

</div>


<script>

    function showModal(amount) {

        document.getElementById('winning-amount').innerText = amount;

        document.getElementById('modal').style.display = 'flex';

    }

    function closeModal() {

        document.getElementById('modal').style.display = 'none';

    }

</script>


</body>

</html>


Post a Comment

0 Comments