Dresses for sale.html

<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <title>Dress Shop</title>

  <style>

    body {

      font-family: Arial, sans-serif;

      padding: 20px;

    }

    .product {

      border: 1px solid #ccc;

      padding: 15px;

      margin-bottom: 20px;

      border-radius: 5px;

      max-width: 300px;

    }

    .on-sale {

      color: red;

      font-weight: bold;

    }

  </style>

</head>

<body>


  <h1>Welcome to the Dress Shop</h1>


  <div class="product">

    <h2>Red Evening Gown</h2>

    <p>Price: $120</p>

    <p class="on-sale">On Sale - Lot #A001</p>

    <button>Add to Cart</button>

  </div>


  <div class="product">

    <h2>Casual Summer Dress</h2>

    <p>Price: $60</p>

    <p class="on-sale">On Sale - Lot #B012</p>

    <button>Add to Cart</button>

  </div>


  <div class="product">

    <h2>Floral Maxi Dress</h2>

    <p>Price: $90</p>

    <p>Lot #C078</p>

    <button>A


dd to Cart</button>

  </div>


</body>

</html>

Comments

Post a Comment

Popular posts from this blog