bazaarblitzwiki / index.html
Fsezai33's picture
Make a website that is a WIKI about a game called "The Bazaar"
498efae verified
Raw
History Blame Contribute Delete
4.25 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BazaarBlitzWiki 🎪 - The Bazaar Game Wiki</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<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="bg-slate-100">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<section class="hero bg-gradient-to-r from-purple-600 to-blue-500 rounded-xl p-8 mb-8 text-white">
<h1 class="text-4xl font-bold mb-4">Welcome to BazaarBlitzWiki 🎪</h1>
<p class="text-xl mb-6">Your ultimate guide to the strategic card game "The Bazaar"</p>
<a href="#getting-started" class="bg-white text-purple-600 px-6 py-3 rounded-lg font-semibold hover:bg-purple-100 transition">Get Started</a>
</section>
<section id="getting-started" class="mb-12">
<h2 class="text-3xl font-bold mb-6 border-b pb-2">Getting Started</h2>
<div class="grid md:grid-cols-3 gap-6">
<div class="bg-white p-6 rounded-lg shadow">
<div class="text-blue-500 mb-4">
<i data-feather="book" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Game Rules</h3>
<p>Learn the basics of gameplay, card types, and victory conditions.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow">
<div class="text-green-500 mb-4">
<i data-feather="users" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Strategies</h3>
<p>Discover advanced tactics and deck building strategies.</p>
</div>
<div class="bg-white p-6 rounded-lg shadow">
<div class="text-purple-500 mb-4">
<i data-feather="star" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Card Database</h3>
<p>Browse all available cards and their effects.</p>
</div>
</div>
</section>
<section class="mb-12">
<h2 class="text-3xl font-bold mb-6 border-b pb-2">Featured Cards</h2>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="bg-white p-6 rounded-lg shadow-lg border-t-4 border-blue-500">
<h3 class="text-xl font-bold text-blue-600 mb-2">Merchant Prince</h3>
<p class="text-gray-600 mb-4">Gain 3 coins when played. Other players must pay you 1 coin.</p>
<span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm">Economic</span>
</div>
<div class="bg-white p-6 rounded-lg shadow-lg border-t-4 border-red-500">
<h3 class="text-xl font-bold text-red-600 mb-2">Bazaar Thief</h3>
<p class="text-gray-600 mb-4">Steal 2 coins from target player. Cannot be blocked.</p>
<span class="bg-red-100 text-red-800 px-3 py-1 rounded-full text-sm">Disruptive</span>
</div>
<div class="bg-white p-6 rounded-lg shadow-lg border-t-4 border-green-500">
<h3 class="text-xl font-bold text-green-600 mb-2">Silk Road</h3>
<p class="text-gray-600 mb-4">Double all coin gains on your next turn.</p>
<span class="bg-green-100 text-green-800 px-3 py-1 rounded-full text-sm">Buff</span>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script>
feather.replace();
</script>
<script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>