Untitled

 avatar
unknown
plain_text
3 years ago
939 B
4
Indexable
<html>
<head>
  <title>Candle Shop</title>
</head>
<body>
  <h1>Welcome to Candle Shop</h1>
  <p>We offer a wide selection of candles in various scents and sizes.</p>

  <!-- Products section -->
  <h2>Products</h2>
  <ul>
    <li>Scented jar candle - $15</li>
    <li>Scented pillar candle - $10</li>
    <li>Unscented votive candle - $5</li>
  </ul>

  <!-- Shopping cart section -->
  <h2>Shopping Cart</h2>
  <form>
    <label>Scented jar candle: <input type="number" name="jar_candle" min="0" value="0"></label><br>
    <label>Scented pillar candle: <input type="number" name="pillar_candle" min="0" value="0"></label><br>
    <label>Unscented votive candle: <input type="number" name="votive_candle" min="0" value="0"></label><br>
    <input type="submit" value="Update Cart">
  </form>

  <!-- Checkout section -->
  <h2>Checkout</h2>
  <p>Total: $<span id="total"></span></p>
  <button>Proceed to checkout</button>
</body>
</html>
Editor is loading...