Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>I Know Kung-Fu, Do you?</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@300;400;700&display=swap'); | |
| body { | |
| font-family: 'Roboto', sans-serif; | |
| background-color: #f8f8f8; | |
| } | |
| .hero-title { | |
| font-family: 'Oswald', sans-serif; | |
| text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); | |
| } | |
| .kungfu-text { | |
| background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000); | |
| background-size: 400% 400%; | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| color: transparent; | |
| animation: gradient 15s ease infinite; | |
| } | |
| @keyframes gradient { | |
| 0% { background-position: 0% 50%; } | |
| 50% { background-position: 100% 50%; } | |
| 100% { background-position: 0% 50%; } | |
| } | |
| .martial-arts-icon { | |
| transition: all 0.3s ease; | |
| } | |
| .martial-arts-icon:hover { | |
| transform: scale(1.2) rotate(10deg); | |
| } | |
| .footer-link:hover { | |
| text-decoration: underline; | |
| text-decoration-style: wavy; | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen flex flex-col"> | |
| <!-- Navigation --> | |
| <nav class="bg-black text-white py-4 px-6 shadow-lg"> | |
| <div class="container mx-auto flex justify-between items-center"> | |
| <a href="#" class="text-2xl font-bold flex items-center"> | |
| <i class="fas fa-fist-raised mr-2 text-red-500"></i> | |
| <span class="kungfu-text">I Know Kung-Fu</span> | |
| </a> | |
| <div class="hidden md:flex space-x-6"> | |
| <a href="#" class="hover:text-red-400 transition">Home</a> | |
| <a href="#" class="hover:text-red-400 transition">Training</a> | |
| <a href="#" class="hover:text-red-400 transition">Philosophy</a> | |
| <a href="#" class="hover:text-red-400 transition">About</a> | |
| <a href="#" class="hover:text-red-400 transition">Contact</a> | |
| </div> | |
| <button class="md:hidden text-white"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <header class="bg-gradient-to-r from-gray-900 to-gray-800 text-white py-20 px-6 flex-grow"> | |
| <div class="container mx-auto text-center"> | |
| <h1 class="hero-title text-4xl md:text-6xl font-bold mb-6"> | |
| <span class="kungfu-text">I Know Kung-Fu</span>, <span class="block md:inline-block mt-2">Do you?</span> | |
| </h1> | |
| <p class="text-xl md:text-2xl mb-10 max-w-2xl mx-auto"> | |
| You will know wisdom! You will know kung-fu | |
| </p> | |
| <div class="flex justify-center space-x-4 mb-16"> | |
| <div class="martial-arts-icon"> | |
| <i class="fas fa-user-ninja text-4xl text-red-500"></i> | |
| </div> | |
| <div class="martial-arts-icon"> | |
| <i class="fas fa-hand-rock text-4xl text-yellow-500"></i> | |
| </div> | |
| <div class="martial-arts-icon"> | |
| <i class="fas fa-running text-4xl text-blue-500"></i> | |
| </div> | |
| <div class="martial-arts-icon"> | |
| <i class="fas fa-yin-yang text-4xl text-green-500"></i> | |
| </div> | |
| </div> | |
| <div class="flex flex-col sm:flex-row justify-center gap-4"> | |
| <button class="bg-red-600 hover:bg-red-700 text-white font-bold py-3 px-8 rounded-full transition transform hover:scale-105"> | |
| Begin Your Journey | |
| </button> | |
| <button class="bg-transparent hover:bg-white hover:text-black text-white font-bold py-3 px-8 border-2 border-white rounded-full transition transform hover:scale-105"> | |
| Learn More | |
| </button> | |
| </div> | |
| </div> | |
| </header> | |
| <!-- Main Content --> | |
| <main class="py-16 px-6"> | |
| <div class="container mx-auto"> | |
| <div class="flex flex-col md:flex-row items-center gap-12"> | |
| <div class="md:w-1/2"> | |
| <img src="https://lh4.googleusercontent.com/xl4f7_0cT4PcNvAiUs7EtBRxQcsIQBNERIVBBBtauCXXiRQfU9ZEIVZfKy5_y8Ntlo4uxP7Y261y_Gnlvp7tyNCta9D35tPlO1kR1WYpQFfEZGgXVT6oJQKmZ7Sa1lwtgIHe15XBJHw7BKdFnn-BZhFhcuhFRrMks-vEUKU7nULJ9ptwgzuu4Q=w1280" | |
| alt="Kung Fu Master" | |
| class="rounded-lg shadow-2xl w-full h-auto object-cover"> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <h2 class="text-3xl font-bold mb-6 text-gray-800">The Path to Mastery</h2> | |
| <p class="text-gray-700 mb-6 text-lg leading-relaxed"> | |
| Kung Fu is more than just martial arts—it's a way of life that combines physical discipline with mental focus and spiritual growth. Our teachings come from ancient traditions, refined through generations of masters. | |
| </p> | |
| <div class="space-y-4"> | |
| <div class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i> | |
| <p class="text-gray-700">Develop strength, flexibility, and endurance</p> | |
| </div> | |
| <div class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i> | |
| <p class="text-gray-700">Learn self-defense techniques from authentic masters</p> | |
| </div> | |
| <div class="flex items-start"> | |
| <i class="fas fa-check-circle text-green-500 mt-1 mr-3"></i> | |
| <p class="text-gray-700">Cultivate mental discipline and inner peace</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </main> | |
| <!-- Quote Section --> | |
| <section class="bg-gray-100 py-16 px-6"> | |
| <div class="container mx-auto text-center max-w-3xl"> | |
| <blockquote class="text-2xl md:text-3xl italic text-gray-800 mb-6"> | |
| "The ultimate aim of Kung Fu lies not in victory or defeat, but in the perfection of the character of its participants." | |
| </blockquote> | |
| <p class="text-gray-600 font-semibold">— Bruce Lee</p> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-8 px-6"> | |
| <div class="container mx-auto"> | |
| <div class="flex flex-col md:flex-row justify-between items-center"> | |
| <div class="mb-6 md:mb-0"> | |
| <a href="#" class="text-xl font-bold flex items-center"> | |
| <i class="fas fa-fist-raised mr-2 text-red-500"></i> | |
| <span class="kungfu-text">I Know Kung-Fu</span> | |
| </a> | |
| <p class="text-gray-400 mt-2 text-sm">© 2023 All Rights Reserved</p> | |
| </div> | |
| <div class="flex flex-col items-center md:items-end"> | |
| <div class="flex space-x-4 mb-4"> | |
| <a href="#" class="footer-link text-gray-400 hover:text-white">Home</a> | |
| <a href="#" class="footer-link text-gray-400 hover:text-white">Training</a> | |
| <a href="#" class="footer-link text-gray-400 hover:text-white">Philosophy</a> | |
| <a href="#" class="footer-link text-gray-400 hover:text-white">About</a> | |
| <a href="#" class="footer-link text-gray-400 hover:text-white">Contact</a> | |
| </div> | |
| <div class="text-gray-500 text-sm"> | |
| <span>Page updated</span> | |
| <span class="mx-2">•</span> | |
| <a href="#" class="footer-link hover:text-white">Report abuse</a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Simple animation for martial arts icons | |
| document.querySelectorAll('.martial-arts-icon').forEach(icon => { | |
| icon.addEventListener('mouseover', () => { | |
| icon.style.animation = 'none'; | |
| setTimeout(() => { | |
| icon.style.animation = ''; | |
| }, 10); | |
| }); | |
| }); | |
| // Mobile menu toggle (would need more implementation) | |
| document.querySelector('button.md\\:hidden').addEventListener('click', () => { | |
| alert('Mobile menu would open here in a full implementation'); | |
| }); | |
| </script> | |
| <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=zombieofCrypto/testkungfu" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |