TheRagingTechni's picture
A creature collecting website, similar to Neopets, where start with one creature that can evolve into one of 5 evolutions. You collect more creatures by taming them.
b6162a7 verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CreatureVerse Evolution</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<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="https://cdn.jsdelivr.net/npm/animejs/lib/anime.min.js"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#000000',
secondary: '#eab308'
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
}
.creature-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.creature-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(234, 179, 8, 0.1), 0 10px 10px -5px rgba(234, 179, 8, 0.04);
}
.evolution-path {
position: relative;
}
.evolution-path::before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, #eab308, transparent);
transform: translateY(-50%);
}
</style>
</head>
<body class="bg-black text-white min-h-screen">
<!-- Navigation -->
<nav class="bg-black border-b border-yellow-500/20 sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<i data-feather="zap" class="text-yellow-500 w-8 h-8"></i>
<span class="ml-2 text-xl font-bold text-yellow-500">CreatureVerse</span>
</div>
</div>
<div class="flex items-center space-x-4">
<a href="#" class="text-yellow-500 hover:text-yellow-400 px-3 py-2 rounded-md text-sm font-medium">My Creatures</a>
<a href="#" class="text-gray-300 hover:text-yellow-500 px-3 py-2 rounded-md text-sm font-medium">Taming Grounds</a>
<a href="#" class="text-gray-300 hover:text-yellow-500 px-3 py-2 rounded-md text-sm font-medium">Evolution Lab</a>
<div class="flex items-center space-x-2">
<div class="bg-yellow-500/10 px-3 py-1 rounded-full">
<span class="text-yellow-500 text-sm">★ 1,250</span>
</div>
<img class="h-8 w-8 rounded-full" src="http://static.photos/gaming/200x200/1" alt="Profile">
</div>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="relative bg-gradient-to-br from-black via-gray-900 to-black py-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl md:text-6xl font-bold text-yellow-500 mb-4">Welcome to CreatureVerse</h1>
<p class="text-xl text-gray-300 mb-8">Collect, evolve, and tame amazing creatures in this dark fantasy world</p>
<div class="flex justify-center space-x-4">
<button class="bg-yellow-500 text-black px-8 py-3 rounded-lg font-semibold hover:bg-yellow-600 transition duration-200">
Start Adventure
</button>
<button class="border border-yellow-500 text-yellow-500 px-8 py-3 rounded-lg font-semibold hover:bg-yellow-500/10 transition duration-200">
Learn More
</button>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<!-- Current Creature -->
<section class="mb-16">
<h2 class="text-3xl font-bold text-yellow-500 mb-8 text-center">Your Starter Creature</h2>
<div class="bg-gray-900/50 rounded-2xl p-8 max-w-2xl mx-auto">
<div class="flex flex-col md:flex-row items-center space-y-6 md:space-y-0 md:space-x-8">
<div class="flex-shrink-0">
<img src="http://static.photos/fantasy/320x240/1" alt="Starter Creature" class="w-48 h-48 rounded-2xl border-4 border-yellow-500">
</div>
<div class="text-center md:text-left">
<h3 class="text-2xl font-bold text-yellow-500 mb-2">Shadowling</h3>
<div class="flex items-center justify-center md:justify-start space-x-2 mb-4">
<span class="bg-yellow-500/20 text-yellow-500 px-3 py-1 rounded-full text-sm">Level 1</span>
<span class="bg-gray-700 text-gray-300 px-3 py-1 rounded-full text-sm">Dark Type</span>
</div>
<p class="text-gray-300 mb-4">A mysterious creature born from shadows. It has the potential to evolve into 5 different forms based on your choices.</p>
<div class="flex space-x-2">
<button class="bg-yellow-500 text-black px-4 py-2 rounded-lg text-sm font-semibold hover:bg-yellow-600 transition duration-200">
Feed Creature
</button>
<button class="border border-yellow-500 text-yellow-500 px-4 py-2 rounded-lg text-sm font-semibold hover:bg-yellow-500/10 transition duration-200">
View Stats
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Evolution Path -->
<section class="mb-16">
<h2 class="text-3xl font-bold text-yellow-500 mb-8 text-center">Evolution Path</h2>
<div class="evolution-path grid grid-cols-1 md:grid-cols-5 gap-8 relative">
<!-- Evolution 1 -->
<div class="creature-card bg-gray-900/50 rounded-2xl p-6 text-center relative z-10">
<img src="http://static.photos/fantasy/200x200/2" alt="Evolution 1" class="w-32 h-32 mx-auto rounded-xl mb-4 border-2 border-yellow-500">
<h4 class="text-lg font-semibold text-yellow-500 mb-2">Nightstalker</h4>
<p class="text-gray-400 text-sm mb-4">Stealth predator that hunts in darkness</p>
<div class="bg-yellow-500/10 text-yellow-500 px-3 py-1 rounded-full text-xs inline-block">
Unlock at Level 10
</div>
</div>
<!-- Evolution 2 -->
<div class="creature-card bg-gray-900/50 rounded-2xl p-6 text-center relative z-10">
<img src="http://static.photos/fantasy/200x200/3" alt="Evolution 2" class="w-32 h-32 mx-auto rounded-xl mb-4 border-2 border-yellow-500">
<h4 class="text-lg font-semibold text-yellow-500 mb-2">Void Walker</h4>
<p class="text-gray-400 text-sm mb-4">Master of dimensional travel</p>
<div class="bg-yellow-500/10 text-yellow-500 px-3 py-1 rounded-full text-xs inline-block">
Unlock at Level 15
</div>
</div>
<!-- Evolution 3 -->
<div class="creature-card bg-gray-900/50 rounded-2xl p-6 text-center relative z-10">
<img src="http://static.photos/fantasy/200x200/4" alt="Evolution 3" class="w-32 h-32 mx-auto rounded-xl mb-4 border-2 border-yellow-500">
<h4 class="text-lg font-semibold text-yellow-500 mb-2">Shadow Drake</h4>
<p class="text-gray-400 text-sm mb-4">Mythical dragon of darkness</p>
<div class="bg-yellow-500/10 text-yellow-500 px-3 py-1 rounded-full text-xs inline-block">
Unlock at Level 20
</div>
</div>
<!-- Evolution 4 -->
<div class="creature-card bg-gray-900/50 rounded-2xl p-6 text-center relative z-10">
<img src="http://static.photos/fantasy/200x200/5" alt="Evolution 4" class="w-32 h-32 mx-auto rounded-xl mb-4 border-2 border-yellow-500">
<h4 class="text-lg font-semibold text-yellow-500 mb-2">Abyssal King</h4>
<p class="text-gray-400 text-sm mb-4">Ruler of the deep darkness</p>
<div class="bg-yellow-500/10 text-yellow-500 px-3 py-1 rounded-full text-xs inline-block">
Unlock at Level 25
</div>
</div>
<!-- Evolution 5 -->
<div class="creature-card bg-gray-900/50 rounded-2xl p-6 text-center relative z-10">
<img src="http://static.photos/fantasy/200x200/6" alt="Evolution 5" class="w-32 h-32 mx-auto rounded-xl mb-4 border-2 border-yellow-500">
<h4 class="text-lg font-semibold text-yellow-500 mb-2">Eclipse Beast</h4>
<p class="text-gray-400 text-sm mb-4">Legendary creature of celestial power</p>
<div class="bg-yellow-500/10 text-yellow-500 px-3 py-1 rounded-full text-xs inline-block">
Unlock at Level 30
</div>
</div>
</div>
</section>
<!-- Taming Section -->
<section>
<h2 class="text-3xl font-bold text-yellow-500 mb-8 text-center">Available Creatures to Tame</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<!-- Creature 1 -->
<div class="creature-card bg-gray-900/50 rounded-2xl p-6 text-center">
<img src="http://static.photos/fantasy/200x200/7" alt="Creature 1" class="w-32 h-32 mx-auto rounded-xl mb-4 border-2 border-yellow-500">
<h4 class="text-lg font-semibold text-yellow-500 mb-2">Glowbug</h4>
<p class="text-gray-400 text-sm mb-4">Tiny light-emitting insect</p>
<div class="flex justify-center space-x-2">
<span class="bg-gray-700 text-gray-300 px-2 py-1 rounded-full text-xs">Common</span>
<span class="bg-blue-500/20 text-blue-400 px-2 py-1 rounded-full text-xs">Light Type</span>
</div>
<button class="w-full mt-4 bg-yellow-500 text-black py-2 rounded-lg font-semibold hover:bg-yellow-600 transition duration-200">
Attempt Tame
</button>
</div>
<!-- Creature 2 -->
<div class="creature-card bg-gray-900/50 rounded-2xl p-6 text-center">
<img src="http://static.photos/fantasy/200x200/8" alt="Creature 2" class="w-32 h-32 mx-auto rounded-xl mb-4 border-2 border-yellow-500">
<h4 class="text-lg font-semibold text-yellow-500 mb-2">Rock Hopper</h4>
<p class="text-gray-400 text-sm mb-4">Agile mountain dweller</p>
<div class="flex justify-center space-x-2">
<span class="bg-gray-700 text-gray-300 px-2 py-1 rounded-full text-xs">Uncommon</span>
<span class="bg-green-500/20 text-green-400 px-2 py-1 rounded-full text-xs">Earth Type</span>
</div>
<button class="w-full mt-4 bg-yellow-500 text-black py-2 rounded-lg font-semibold hover:bg-yellow-600 transition duration-200">
Attempt Tame
</button>
</div>
<!-- Creature 3 -->
<div class="creature-card bg-gray-900/50 rounded-2xl p-6 text-center">
<img src="http://static.photos/fantasy/200x200/9" alt="Creature 3" class="w-32 h-32 mx-auto rounded-xl mb-4 border-2 border-yellow-500">
<h4 class="text-lg font-semibold text-yellow-500 mb-2">Spark Wing</h4>
<p class="text-gray-400 text-sm mb-4">Electric avian creature</p>
<div class="flex justify-center space-x-2">
<span class="bg-purple-500/20 text-purple-400 px-2 py-1 rounded-full text-xs">Rare</span>
<span class="bg-yellow-500/20 text-yellow-400 px-2 py-1 rounded-full text-xs">Electric Type</span>
</div>
<button class="w-full mt-4 bg-yellow-500 text-black py-2 rounded-lg font-semibold hover:bg-yellow-600 transition duration-200">
Attempt Tame
</button>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-black border-t border-yellow-500/20 mt-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="flex items-center mb-4 md:mb-0">
<i data-feather="zap" class="text-yellow-500 w-6 h-6"></i>
<span class="ml-2 text-lg font-bold text-yellow-500">CreatureVerse</span>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-yellow-500">About</a>
<a href="#" class="text-gray-400 hover:text-yellow-500">FAQ</a>
<a href="#" class="text-gray-400 hover:text-yellow-500">Contact</a>
<a href="#" class="text-gray-400 hover:text-yellow-500">Terms</a>
</div>
</div>
<div class="mt-4 text-center text-gray-500 text-sm">
© 2024 CreatureVerse Evolution. All rights reserved.
</div>
</div>
</footer>
<script>
// Initialize feather icons
feather.replace();
// Add hover animations to creature cards
document.addEventListener('DOMContentLoaded', function() {
const cards = document.querySelectorAll('.creature-card');
cards.forEach(card => {
card.addEventListener('mouseenter', function() {
anime({
targets: this,
scale: 1.02,
duration: 300,
easing: 'easeOutCubic'
});
});
card.addEventListener('mouseleave', function() {
anime({
targets: this,
scale: 1,
duration: 300,
easing: 'easeOutCubic'
});
});
});
});
</script>
</body>
</html>