Azuy's picture
Help me make a website for querying information about Americans
86fd306 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>American Data Explorer</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="components/navbar.js"></script>
<script src="components/search.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gray-100 min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-grow container mx-auto px-4 py-8">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-12">
<h1 class="text-4xl font-bold text-gray-900 mb-4">American Data Explorer</h1>
<p class="text-xl text-gray-600">Discover fascinating statistics and information about Americans</p>
</div>
<custom-search></custom-search>
<div class="grid md:grid-cols-3 gap-8 mt-12">
<div class="bg-white rounded-lg shadow-md p-6 hover:shadow-lg transition-shadow">
<div class="text-blue-600 mb-4">
<i data-feather="users" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Population Stats</h3>
<p class="text-gray-600 mb-4">Explore demographic data including age, gender, and ethnicity distributions.</p>
<a href="population.html" class="text-blue-600 hover:text-blue-800 font-medium inline-flex items-center">
View details <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<div class="bg-white rounded-lg shadow-md p-6 hover:shadow-lg transition-shadow">
<div class="text-green-600 mb-4">
<i data-feather="dollar-sign" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Economic Data</h3>
<p class="text-gray-600 mb-4">Income, employment, and economic mobility statistics across states.</p>
<a href="economy.html" class="text-green-600 hover:text-green-800 font-medium inline-flex items-center">
View details <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<div class="bg-white rounded-lg shadow-md p-6 hover:shadow-lg transition-shadow">
<div class="text-purple-600 mb-4">
<i data-feather="home" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Housing Trends</h3>
<p class="text-gray-600 mb-4">Housing prices, ownership rates, and rental market analysis.</p>
<a href="housing.html" class="text-purple-600 hover:text-purple-800 font-medium inline-flex items-center">
View details <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
<div class="mt-16 bg-white rounded-lg shadow-md p-8">
<h2 class="text-2xl font-bold mb-6 text-gray-800">About This Project</h2>
<p class="text-gray-600 mb-4">
The American Data Explorer provides easy access to comprehensive data about the United States population.
Our platform aggregates and visualizes data from trusted government sources to help you understand
American demographics, economics, and social trends.
</p>
<p class="text-gray-600">
Whether you're a researcher, student, journalist, or just curious, our tools make complex data accessible
and understandable.
</p>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>