Untitled

 avatar
unknown
plain_text
2 years ago
3.1 kB
4
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Black Friday Bonanza</title>
  <style>
    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f4f4f4;
      color: #333;
    }
    header {
      background-color: #333;
      color: #fff;
      padding: 10px;
      text-align: center;
    }
    section {
      padding: 20px;
      text-align: center;
    }
    .offer-container {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      padding: 20px;
      margin-bottom: 20px;
    }
    .cta-button {
      display: inline-block;
      background-color: #333;
      color: #fff;
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 5px;
      transition: background-color 0.3s;
    }
    .cta-button:hover {
      background-color: #555;
    }
    footer {
      background-color: #333;
      color: #fff;
      padding: 10px;
      text-align: center;
    }
  </style>
</head>
<body>
  <header>
    <h1>Black Friday Bonanza</h1>
  </header>

  <section>
    <div class="offer-container">
      <h2>The Active Play Membership</h2>
      <p>For a limited time, enjoy unlimited active play for your kids. 10% off all café items during visits. Only $75 for 4 weeks. Sibling discounts available.</p>
      <a href="[LINK_TO_ACTIVE_PLAY_LANDING_PAGE]" class="cta-button">Unlock Unlimited Play</a>
    </div>

    <div class="offer-container">
      <h2>The Ultimate Birthday Bash</h2>
      <p>Book a stress-free birthday party this Black Friday and receive a bonus free month of Active Play pass for the birthday child and one sibling. Use Promo Code: BIRTHDAYBASH at checkout.</p>
      <a href="[LINK_TO_BIRTHDAY_BASH_LANDING_PAGE]" class="cta-button">Book the Ultimate Bash</a>
    </div>

    <div class="offer-container">
      <h2>Active Play Extravaganza</h2>
      <p>Dive into a month of unlimited active play, complimentary fun fitness workshop, and an exclusive 15% off on fitness merchandise.</p>
      <a href="[LINK_TO_ACTIVE_PLAY_EXTRAVAGANZA_LANDING_PAGE]" class="cta-button">Claim Your Extravaganza</a>
    </div>

    <div class="offer-container">
      <h2>Family Fitness Fiesta</h2>
      <p>Elevate your family's fitness journey with a special Black Friday family membership, a customized fitness plan, and a free nutrition workshop for parents.</p>
      <a href="[LINK_TO_FAMILY_FITNESS_FIESTA_LANDING_PAGE]" class="cta-button">Join the Fitness Fiesta</a>
    </div>

    <div class="offer-container">
      <h2>Double the Joy Combo</h2>
      <p>Combine The Active Play Membership and The Ultimate Birthday Bash to receive an additional 5% discount on the total. Act fast, it's the grand finale!</p>
      <a href="[LINK_TO_DOUBLE_JOY_LANDING_PAGE]" class="cta-button">Grab the Double Joy Offer</a>
    </div>
  </section>

  <footer>
    <p>© 2023 [Your Fitness Facility Name]. All rights reserved.</p>
  </footer>
</body>
</html>
Editor is loading...