Untitled

 avatar
unknown
javascript
a month ago
1.4 kB
1
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Food Stuffs</title>
  <link rel="stylesheet" href="css/styles.css">
</head>
<body>
  <header>
    <h1>Welcome to Food Stuffs</h1>
    <nav>
      <ul>
        <li><a href="index.html">Home</a></li>
        <li><a href="about.html">About</a></li>
        <li><a href="contact.html">Contact</a></li>
      </ul>
    </nav>
  </header>
  <main>
    <section class="banner">
      <h2>Your Gateway to Delicious Foods</h2>
      <p>Explore recipes, find ingredients, and connect with restaurants.</p>
    </section>
    <section class="categories">
      <h3>Our Categories</h3>
      <div class="category-list">
        <div class="category">
          <h4>Recipes</h4>
          <p>Discover mouthwatering recipes to try at home.</p>
        </div>
        <div class="category">
          <h4>Ingredients</h4>
          <p>Find fresh and organic ingredients.</p>
        </div>
        <div class="category">
          <h4>Restaurants</h4>
          <p>Explore the best places to eat near you.</p>
        </div>
      </div>
    </section>
  </main>
  <footer>
    <p>&copy; 2025 Food Stuffs. All rights reserved.</p>
  </footer>
  <script src="js/app.js"></script>
</body>
</html>
Leave a Comment