Untitled

 avatar
unknown
plain_text
24 days ago
2.3 kB
6
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>RELPOP Slushie Cup</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #f0f8ff;
      color: #333;
    }
    .container {
      max-width: 1000px;
      margin: auto;
      padding: 20px;
      display: flex;
      flex-wrap: wrap;
    }
    .image-section, .info-section {
      flex: 1;
      padding: 20px;
    }
    .image-section img {
      max-width: 100%;
      border-radius: 10px;
    }
    .title {
      font-size: 24px;
      font-weight: bold;
    }
    .price {
      font-size: 28px;
      color: #e60023;
    }
    .discount {
      font-size: 16px;
      text-decoration: line-through;
      margin-left: 10px;
      color: gray;
    }
    .tagline {
      font-size: 20px;
      margin: 10px 0;
    }
    .rating {
      margin: 10px 0;
    }
    .color-options img {
      width: 60px;
      margin-right: 10px;
      border: 2px solid #ccc;
      border-radius: 5px;
    }
    .buy-button {
      background-color: #0070f3;
      color: white;
      padding: 12px 24px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
      margin-top: 20px;
    }
    .buy-button:hover {
      background-color: #005dc1;
    }
  </style>
</head>
<body>

<div class="container">
  <div class="image-section">
    <img src="your-product-image.png" alt="RELPOP Slushie Cup">
  </div>

  <div class="info-section">
    <div class="tagline">Freeze • Squeeze • Enjoy!</div>
    <div class="title">RELPOP Homemade Smoothie Cup</div>
    <p>Quick-Frozen Ice Cream Milkshake Bottle - Summer DIY Juice Iced Cup Freezed Portable Squeeze Slushie Cups</p>

    <div class="price">
      C$5.59
      <span class="discount">C$48.74</span>
      <span style="color: green;">(88% off)</span>
    </div>

    <div class="rating">
      ⭐ 4.3 (43 Reviews) | 364 sold
    </div>

    <h4>Color: Blue</h4>
    <div class="color-options">
      <img src="color-blue.png" alt="Blue">
      <img src="color-yellow.png" alt="Yellow">
      <img src="color-pink.png" alt="Pink">
    </div>

    <button class="buy-button">Buy Now</button>
  </div>
</div>

</body>
</html>
Editor is loading...
Leave a Comment