<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Gaw Realty Hub</title>
  <link rel="stylesheet" href="style.css"/>
</head>
<body>
  <header>
    <h1>Gaw Realty Hub</h1>
    <p>Your Modern, Colorful, and Eco-Friendly Property Listings</p>
  </header>

  <nav>
    <a href="#">Home</a>
    <a href="#">Listings</a>
    <a href="#">About</a>
    <a href="#">Contact</a>
  </nav>

  <section class="listings">
    <div class="card">
      <img src="https://via.placeholder.com/400x250" alt="Property 1">
      <h2>Eco Modern House</h2>
      <p>3 Bed • 2 Bath • Solar Powered</p>
      <span class="price">₱4,500,000</span>
    </div>

    <div class="card">
      <img src="https://via.placeholder.com/400x250" alt="Property 2">
      <h2>Colorful Beach Villa</h2>
      <p>4 Bed • 3 Bath • Ocean View</p>
      <span class="price">₱12,800,000</span>
    </div>

    <div class="card">
      <img src="https://via.placeholder.com/400x250" alt="Property 3">
      <h2>Green Urban Loft</h2>
      <p>2 Bed • 1 Bath • City Center</p>
      <span class="price">₱6,300,000</span>
    </div>
  </section>

  <footer>
    <p>© 2025 Gaw Realty Hub | Built with ❤️ for sustainable living</p>
  </footer>
</body>
</html>
