SUPERMANwebsite name: SUPERMAN website theme : blackish"home " page content:1. background image : "I:\Images\Cinematic\super_man_ready_to_fly.jpg"2. front texts:-superman : stonger than yesterday ( lighter character)-the hero you can trust ( bold character)-Born on the planet Krypton, Kal-El was sent to Earth by his parents, Jor-El and Lara, before their planet was destroyed. He was found and adopted by Jonathan and Martha Kent, who raised him as their ow in allville, Kansas(quotes )a right pointing arrow logo link button that open main page (at buttom)“main” page content :Header with new row : 6 deadly villains fought with superman New row ; image + text button link : Superman vs. DoomsdayNew row ; image + text button link : Superman vs. BrainiacNew row ; image + text button link :Superman vs. BizarroNew row ; image + text button link :Superman vs. DarkseidNew row ; image + text button link :Superman vs. Lex LuthorHome button that return to home page Containt pages :- will include header and paraghaph - home button that return to main page - logo button that return top smoothly - Initial Deployment
7e1153f
verified
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>SUPERMAN vs Doomsday</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet"> | |
| <script src="https://unpkg.com/[email protected]/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> | |
| </head> | |
| <body class="bg-black text-white min-h-screen"> | |
| <header class="bg-gray-900 py-8"> | |
| <div class="container mx-auto px-4"> | |
| <h1 class="text-4xl md:text-5xl font-bold text-center text-red-500 mb-6">Superman vs Doomsday</h1> | |
| <div class="flex justify-center space-x-4"> | |
| <a href="index.html" class="bg-red-600 hover:bg-red-700 text-white font-bold py-2 px-6 rounded-full flex items-center transition-all duration-300"> | |
| <i data-feather="home" class="mr-2"></i> Home | |
| </a> | |
| <a href="main.html" class="bg-gray-700 hover:bg-gray-600 text-white font-bold py-2 px-6 rounded-full flex items-center transition-all duration-300"> | |
| <i data-feather="list" class="mr-2"></i> All Villains | |
| </a> | |
| </div> | |
| </div> | |
| </header> | |
| <main class="container mx-auto px-4 py-12"> | |
| <div class="max-w-4xl mx-auto"> | |
| <div class="mb-12" data-aos="fade-up"> | |
| <img src="https://static.photos/black/1024x576/1" alt="Superman vs Doomsday" class="w-full rounded-lg shadow-xl"> | |
| </div> | |
| <div class="prose prose-invert max-w-none" data-aos="fade-up"> | |
| <h2 class="text-3xl font-bold text-red-500 mb-4">The Battle That Shook the World</h2> | |
| <p class="text-lg mb-6">Doomsday is perhaps Superman's most formidable physical opponent, a monstrous being whose sole purpose is destruction. Their most famous battle occurred in "The Death of Superman" storyline, where the two combatants fought to the death in the streets of Metropolis.</p> | |
| <h3 class="text-2xl font-bold text-red-500 mb-3">Origins of Doomsday</h3> | |
| <p class="text-lg mb-6">Doomsday was created through cruel experiments on prehistoric Krypton, where he was subjected to repeated deaths and resurrections until he evolved into an unstoppable killing machine. His unique biology makes him stronger with each defeat, adapting to overcome whatever killed him before.</p> | |
| <h3 class="text-2xl font-bold text-red-500 mb-3">Key Battles</h3> | |
| <ul class="list-disc pl-6 mb-6 space-y-2"> | |
| <li>First appearance in "Superman: The Man of Steel" #17-18</li> | |
| <li>The Death of Superman (1992-1993 storyline)</li> | |
| <li>Return in "Hunter/Prey" (1994 miniseries)</li> | |
| <li>Doomsday Wars (2000 miniseries)</li> | |
| </ul> | |
| <h3 class="text-2xl font-bold text-red-500 mb-3">Powers and Abilities</h3> | |
| <p class="text-lg mb-6">Doomsday possesses superhuman strength, speed, stamina, and durability that rivals Superman's. His most dangerous ability is his adaptive evolution - when killed, he returns to life immune to whatever killed him before. He also has bone protrusions from his body that serve as natural armor and weapons.</p> | |
| <h3 class="text-2xl font-bold text-red-500 mb-3">Legacy</h3> | |
| <p class="text-lg">The battle between Superman and Doomsday remains one of the most iconic in comic book history, culminating in both combatants dying from their injuries. While Superman would eventually return, this battle proved that even the Man of Steel could be killed, changing the DC Universe forever.</p> | |
| </div> | |
| </div> | |
| </main> | |
| <div class="back-to-top" onclick="window.scrollTo({top: 0, behavior: 'smooth'})"> | |
| <i data-feather="arrow-up" class="text-white"></i> | |
| </div> | |
| <script> | |
| AOS.init(); | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> | |