roblox / index.html
Tyler345's picture
make me a roblox game for my game - Initial Deployment
d45d4f1 verified
Raw
History Blame Contribute Delete
13.3 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Epic Roblox Adventure | Play Now!</title>
<link rel="icon" type="image/x-icon" href="https://www.roblox.com/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/animejs/lib/anime.iife.min.js"></script>
<style>
.hero-gradient {
background: linear-gradient(135deg, #ff4d4d 0%, #f9cb28 100%);
}
.game-card {
transition: all 0.3s ease;
}
.game-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.pulse-animation {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
</style>
</head>
<body class="bg-gray-900 text-white font-sans">
<!-- Navigation -->
<nav class="fixed w-full bg-gray-900 bg-opacity-90 z-50">
<div class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="flex items-center">
<i data-feather="box" class="text-red-500 mr-2"></i>
<span class="text-xl font-bold">Epic Roblox Adventure</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#about" class="hover:text-red-400 transition">About</a>
<a href="#features" class="hover:text-red-400 transition">Features</a>
<a href="#screenshots" class="hover:text-red-400 transition">Screenshots</a>
<a href="#play" class="hover:text-red-400 transition">Play Now</a>
</div>
<div class="md:hidden">
<button id="menu-btn" class="focus:outline-none">
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden fixed inset-0 bg-gray-900 bg-opacity-95 z-40 pt-20">
<div class="flex flex-col items-center space-y-8 text-xl py-10">
<a href="#about" class="hover:text-red-400 transition">About</a>
<a href="#features" class="hover:text-red-400 transition">Features</a>
<a href="#screenshots" class="hover:text-red-400 transition">Screenshots</a>
<a href="#play" class="hover:text-red-400 transition">Play Now</a>
</div>
</div>
<!-- Hero Section -->
<section class="hero-gradient min-h-screen flex items-center pt-20">
<div class="container mx-auto px-6 py-20">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0" data-aos="fade-right">
<h1 class="text-5xl md:text-6xl font-bold mb-6">Epic Roblox Adventure</h1>
<p class="text-xl mb-8">Join millions of players in this exciting new world full of challenges, treasures, and endless fun!</p>
<a href="#play" class="bg-white text-red-500 font-bold px-8 py-4 rounded-full hover:bg-gray-100 transition duration-300 inline-block pulse-animation">
Play Now <i data-feather="arrow-right" class="inline ml-2"></i>
</a>
</div>
<div class="md:w-1/2" data-aos="fade-left">
<img src="https://via.placeholder.com/600x400/ff4d4d/ffffff?text=Game+Preview" alt="Game Preview" class="rounded-lg shadow-2xl border-4 border-white">
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gray-800">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold text-center mb-16" data-aos="fade-up">About The Game</h2>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0" data-aos="fade-right">
<img src="https://via.placeholder.com/500x350/f9cb28/ffffff?text=Gameplay" alt="Gameplay" class="rounded-lg shadow-xl">
</div>
<div class="md:w-1/2 md:pl-12" data-aos="fade-left">
<p class="text-lg mb-6">Epic Roblox Adventure is a thrilling multiplayer experience where you can explore vast worlds, complete challenging quests, and collect rare items with your friends.</p>
<p class="text-lg mb-6">Created by a passionate team of developers, this game offers endless hours of entertainment with regular updates and new content.</p>
<div class="flex items-center space-x-4">
<div class="flex items-center">
<i data-feather="users" class="text-red-500 mr-2"></i>
<span>10M+ Players</span>
</div>
<div class="flex items-center">
<i data-feather="star" class="text-yellow-400 mr-2"></i>
<span>4.9/5 Rating</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 bg-gray-900">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold text-center mb-16" data-aos="fade-up">Game Features</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="game-card bg-gray-800 p-8 rounded-xl" data-aos="fade-up" data-aos-delay="100">
<div class="text-red-500 mb-4">
<i data-feather="compass" class="w-10 h-10"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Open World</h3>
<p class="text-gray-300">Explore vast landscapes with hidden secrets and treasures waiting to be discovered.</p>
</div>
<!-- Feature 2 -->
<div class="game-card bg-gray-800 p-8 rounded-xl" data-aos="fade-up" data-aos-delay="200">
<div class="text-yellow-400 mb-4">
<i data-feather="users" class="w-10 h-10"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Multiplayer</h3>
<p class="text-gray-300">Team up with friends or compete against others in exciting challenges and events.</p>
</div>
<!-- Feature 3 -->
<div class="game-card bg-gray-800 p-8 rounded-xl" data-aos="fade-up" data-aos-delay="300">
<div class="text-blue-400 mb-4">
<i data-feather="award" class="w-10 h-10"></i>
</div>
<h3 class="text-2xl font-bold mb-4">Customization</h3>
<p class="text-gray-300">Personalize your character with unique outfits, weapons, and accessories.</p>
</div>
</div>
</div>
</section>
<!-- Screenshots Section -->
<section id="screenshots" class="py-20 bg-gray-800">
<div class="container mx-auto px-6">
<h2 class="text-4xl font-bold text-center mb-16" data-aos="fade-up">Screenshots</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div data-aos="fade-up" data-aos-delay="100">
<img src="https://via.placeholder.com/600x400/ff4d4d/ffffff?text=Game+Screenshot+1" alt="Screenshot 1" class="rounded-lg shadow-xl w-full h-auto">
</div>
<div data-aos="fade-up" data-aos-delay="200">
<img src="https://via.placeholder.com/600x400/f9cb28/ffffff?text=Game+Screenshot+2" alt="Screenshot 2" class="rounded-lg shadow-xl w-full h-auto">
</div>
<div data-aos="fade-up" data-aos-delay="300">
<img src="https://via.placeholder.com/600x400/4d79ff/ffffff?text=Game+Screenshot+3" alt="Screenshot 3" class="rounded-lg shadow-xl w-full h-auto">
</div>
<div data-aos="fade-up" data-aos-delay="100">
<img src="https://via.placeholder.com/600x400/4dffb8/ffffff?text=Game+Screenshot+4" alt="Screenshot 4" class="rounded-lg shadow-xl w-full h-auto">
</div>
<div data-aos="fade-up" data-aos-delay="200">
<img src="https://via.placeholder.com/600x400/ff4de7/ffffff?text=Game+Screenshot+5" alt="Screenshot 5" class="rounded-lg shadow-xl w-full h-auto">
</div>
<div data-aos="fade-up" data-aos-delay="300">
<img src="https://via.placeholder.com/600x400/4d4dff/ffffff?text=Game+Screenshot+6" alt="Screenshot 6" class="rounded-lg shadow-xl w-full h-auto">
</div>
</div>
</div>
</section>
<!-- Play Now Section -->
<section id="play" class="py-20 bg-gray-900">
<div class="container mx-auto px-6 text-center">
<h2 class="text-4xl font-bold mb-8" data-aos="fade-up">Ready to Play?</h2>
<p class="text-xl mb-12 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="100">Join the adventure today and experience the most exciting Roblox game of the year!</p>
<a href="https://www.roblox.com/games/" target="_blank" class="bg-red-500 hover:bg-red-600 text-white font-bold px-12 py-5 rounded-full text-lg inline-block transition duration-300 pulse-animation" data-aos="fade-up" data-aos-delay="200">
Play Now on Roblox <i data-feather="external-link" class="inline ml-2"></i>
</a>
<div class="mt-16" data-aos="fade-up" data-aos-delay="300">
<h3 class="text-2xl font-bold mb-6">Follow Us</h3>
<div class="flex justify-center space-x-6">
<a href="#" class="text-gray-400 hover:text-red-500 transition">
<i data-feather="twitter" class="w-8 h-8"></i>
</a>
<a href="#" class="text-gray-400 hover:text-red-500 transition">
<i data-feather="youtube" class="w-8 h-8"></i>
</a>
<a href="#" class="text-gray-400 hover:text-red-500 transition">
<i data-feather="instagram" class="w-8 h-8"></i>
</a>
<a href="#" class="text-gray-400 hover:text-red-500 transition">
<i data-feather="discord" class="w-8 h-8"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 py-8">
<div class="container mx-auto px-6 text-center">
<p>© 2023 Epic Roblox Adventure. All rights reserved.</p>
<p class="text-gray-400 mt-2">Not affiliated with Roblox Corporation.</p>
</div>
</footer>
<script>
// Initialize AOS animations
AOS.init({
duration: 800,
easing: 'ease-in-out',
once: true
});
// Mobile menu toggle
const menuBtn = document.getElementById('menu-btn');
const mobileMenu = document.getElementById('mobile-menu');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
const icon = menuBtn.querySelector('i');
if (mobileMenu.classList.contains('hidden')) {
feather.replace();
} else {
icon.setAttribute('data-feather', 'x');
feather.replace();
}
});
// Close mobile menu when clicking a link
const mobileLinks = document.querySelectorAll('#mobile-menu a');
mobileLinks.forEach(link => {
link.addEventListener('click', () => {
mobileMenu.classList.add('hidden');
const icon = menuBtn.querySelector('i');
icon.setAttribute('data-feather', 'menu');
feather.replace();
});
});
// Smooth scrolling for all links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
<script>feather.replace();</script>
</body>
</html>