bigpappic's picture
I want you to build me a free website to go along with this app and then I want us to deploy it so that it's downloadable right now and able to use fully functional
2db1da7 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Free Website | The Ultimate Blank Canvas</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-grow">
<!-- Hero Section -->
<section class="py-20 px-4 bg-gradient-to-r from-blue-500 to-indigo-600 text-white">
<div class="max-w-6xl mx-auto text-center">
<h1 class="text-5xl font-bold mb-6">Free Website Builder</h1>
<p class="text-xl mb-8 max-w-2xl mx-auto">
Create beautiful, responsive websites for free with our easy-to-use platform.
</p>
<div class="flex justify-center gap-4">
<a href="#start" class="px-6 py-3 bg-white text-blue-600 rounded-lg hover:bg-gray-100 transition font-bold">
Start Building
</a>
<a href="#templates" class="px-6 py-3 border border-white text-white rounded-lg hover:bg-white hover:text-blue-600 transition font-bold">
View Templates
</a>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-16 px-4 bg-white">
<div class="max-w-6xl mx-auto">
<h2 class="text-3xl font-bold text-center mb-12">Powerful Features</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-50 p-6 rounded-xl">
<div class="text-blue-500 mb-4">
<i data-feather="code" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-bold mb-2">Drag & Drop Builder</h3>
<p class="text-gray-600">No coding required. Just drag, drop and customize.</p>
</div>
<div class="bg-gray-50 p-6 rounded-xl">
<div class="text-blue-500 mb-4">
<i data-feather="smartphone" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-bold mb-2">Mobile Responsive</h3>
<p class="text-gray-600">Automatically adapts to all screen sizes.</p>
</div>
<div class="bg-gray-50 p-6 rounded-xl">
<div class="text-blue-500 mb-4">
<i data-feather="cloud" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-bold mb-2">Free Hosting</h3>
<p class="text-gray-600">Publish instantly with our free cloud hosting.</p>
</div>
</div>
</div>
</section>
<!-- Templates Section -->
<section id="templates" class="py-16 px-4 bg-gray-50">
<div class="max-w-6xl mx-auto">
<h2 class="text-3xl font-bold text-center mb-12">Beautiful Templates</h2>
<div class="grid md:grid-cols-3 gap-6">
<div class="border rounded-lg overflow-hidden shadow-sm hover:shadow-md transition">
<img src="http://static.photos/technology/640x360/1" alt="Business Template" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-bold mb-2">Business</h3>
<button class="text-blue-500 font-medium">Use Template</button>
</div>
</div>
<div class="border rounded-lg overflow-hidden shadow-sm hover:shadow-md transition">
<img src="http://static.photos/education/640x360/2" alt="Portfolio Template" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-bold mb-2">Portfolio</h3>
<button class="text-blue-500 font-medium">Use Template</button>
</div>
</div>
<div class="border rounded-lg overflow-hidden shadow-sm hover:shadow-md transition">
<img src="http://static.photos/restaurant/640x360/3" alt="Restaurant Template" class="w-full h-48 object-cover">
<div class="p-4">
<h3 class="font-bold mb-2">Restaurant</h3>
<button class="text-blue-500 font-medium">Use Template</button>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section id="start" class="py-16 px-4 bg-blue-50">
<div class="max-w-2xl mx-auto text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Build Your Website?</h2>
<p class="text-lg mb-8">Join thousands of users creating amazing websites for free.</p>
<button class="px-8 py-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition font-bold">
Get Started Now
</button>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
</body>
</html>