<!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...