Enter Your Address

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Kats Delivery</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    header {
      background-color: #f8c146;
      padding: 20px;
      text-align: center;
    }
    header h1 {
      margin: 0;
    }
    nav {
      background-color: #333;
      overflow: hidden;
    }
    nav a {
      float: left;
      display: block;
      color: #f2f2f2;
      text-align: center;
      padding: 14px 16px;
      text-decoration: none;
    }
    nav a:hover {
      background-color: #ddd;
      color: black;
    }
    .hero {
      background-color: #ffeeba;
      padding: 50px;
      text-align: center;
    }
    .hero h2 {
      margin-top: 0;
    }
    .features, .steps, .testimonials {
      padding: 50px;
      text-align: center;
    }
    .feature-item, .step-item, .testimonial-item {
      margin-bottom: 30px;
    }
    footer {
      background-color: #f8c146;
      padding: 20px;
      text-align: center;
    }
  </style>
</head>
<body>
  <header>
    <h1>Kats Delivery</h1>
    <p>Fast - Easy - Fresh - Delivered to your door</p>
  </header>
  <nav>
    <a href="#">Home</a>
    <a href="#">Restaurants</a>
    <a href="#">Grocery</a>
    <a href="#">About Us</a>
    <a href="#">Contact</a>
  </nav>
  <section class="hero">
    <h2>Keeping it Local</h2>
    <p>Quick and easy ordering to hotspots around town. Select your place, share the link with friends or colleagues, and order now.</p>
    <button onclick="alert('Find Food functionality not implemented.')">Find Food</button>
  </section>
  <section class="features">
    <h2>The Best Restaurants</h2>
    <div class="feature-item">
      <p>We've teamed up with your favorite local restaurants so you'll always find something that hits the spot.</p>
    </div>
    <div class="feature-item">
      <p>Friendly Support: The two things we understand best in this world - Food delivery and hungry customers.</p>
    </div>
  </section>
  <section class="steps">
    <h2>How Do I Order?</h2>
    <div class="step-item">
      <h3>Step 1</h3>
      <p>Enter Address</p>
    </div>
    <div class="step-item">
      <h3>Step 2</h3>
      <p>Select Restaurant and Place Order</p>
    </div>
    <div class="step-item">
      <h3>Step 3</h3>
      <p>Sit Back and Relax. We Do The Rest!</p>
    </div>
  </section>
  <section class="testimonials">
    <h2>What People are Saying</h2>
    <div class="testimonial-item">
      <p>"KATs has amazing service! Their drivers are 100% professional and their dispatch are always on top of everything from traffic issues to the delay of vendors! I'm so happy they came to Clanton!"</p>
      <p>- Sarah</p>
    </div>
    <div class="testimonial-item">
      <p>"Perfect for the area. Fast delivery, friendly drivers and easy to use site! Don’t go through these other delivery sites. Keep it local!"</p>
      <p>- Crystal</p>
    </div>
    <div class="testimonial-item">
      <p>"Every time we use them fast delivery in less time than it would take me to go get it myself. Busy days at work everyone eats anything they want within surrounding areas."</p>
      <p>- Steven</p>
    </div>
  </section>
  <footer>
    <p>&copy; 2025 Kats Delivery. All rights reserved.</p>
    <p>Call Us On: 205-624-0777</p>
  </footer>
</body>
</html>