Untitled

 avatar
unknown
plain_text
2 years ago
1.5 kB
5
Indexable
<!DOCTYPE html>
<html>
  <head>
    <title>Scented Candles</title>
    <link rel="stylesheet" type="text/css" href="styles.css">
  </head>
  <body>
    <header>
      <h1>Scented Candles</h1>
    </header>
    <nav>
      <ul>
        <li><a href="#candles">Candles</a></li>
        <li><a href="#about">About</a></li>
        <li><a href="#contact">Contact</a></li>
      </ul>
    </nav>
    <main>
      <section id="candles">
        <h2>Candles</h2>
        <ul>
          <li>
            <h3>Lavender</h3>
            <img src="lavender-candle.jpg" alt="Lavender scented candle">
            <p>A relaxing lavender scent perfect for unwinding after a long day.</p>
            <button>Add to Cart</button>
          </li>
          <li>
            <h3>Vanilla</h3>
            <img src="vanilla-candle.jpg" alt="Vanilla scented candle">
            <p>A warm vanilla scent that will remind you of home.</p>
            <button>Add to Cart</button>
          </li>
          <!-- Add more candles here -->
        </ul>
      </section>
      <section id="about">
        <h2>About</h2>
        <p>We are a small business that makes handmade scented candles.</p>
      </section>
      <section id="contact">
        <h2>Contact</h2>
        <ul>
          <li>Email: info@scentedcandles.com</li>
          <li>Phone: 555-555-5555</li>
          <li>Address: 123 Main St, Anytown USA</li>
        </ul>
      </section>
    </main>
    <footer>
      <p>Copyright 2021 Scented Candles</p>
    </footer>
  </body>
</html>
Editor is loading...