OneCompiler

crowd Funding

100
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>CrowdFunding Platform</title> <link rel="stylesheet" href="styles.css"> </head> <body> <header> <nav> <ul> <li><a href="/">Home</a></li> <li><a href="/create-campaign">Create Campaign</a></li> <li><a href="/explore">Explore Projects</a></li> </ul> </nav> </header> <main> <section id="hero"> <h1>Welcome to CrowdFundIt</h1> <p>Your idea, funded by the community.</p> <a href="/create-campaign" class="btn">Start a Campaign</a> </section>
<section id="featured-projects">
  <h2>Featured Campaigns</h2>
  <div class="projects">
    <!-- Add dynamic project listing here -->
  </div>
</section>

<footer>
  <p>&copy; 2025 CrowdFundIt - All Rights Reserved</p>
</footer>
</main> </body> </html>