File size: 4,650 Bytes
b4d74c1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chromatic Canvas | Dinosaur Facts</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gradient-to-br from-gray-50 to-gray-100 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-12">
<h1 class="text-4xl font-bold text-center mb-8 text-gray-800">Dinosaur Discoveries</h1>
<section class="mb-16">
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-white rounded-xl shadow-lg p-6 transform hover:scale-105 transition duration-300">
<img src="http://static.photos/nature/640x360/1" alt="T-Rex" class="w-full h-48 object-cover rounded-lg mb-4">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Tyrannosaurus Rex</h3>
<p class="text-gray-600">The "tyrant lizard king" ruled the Cretaceous period with its massive skull and powerful jaws.</p>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 transform hover:scale-105 transition duration-300">
<img src="http://static.photos/nature/640x360/2" alt="Triceratops" class="w-full h-48 object-cover rounded-lg mb-4">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Triceratops</h3>
<p class="text-gray-600">This three-horned herbivore used its bony frill for defense and display.</p>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 transform hover:scale-105 transition duration-300">
<img src="http://static.photos/nature/640x360/3" alt="Velociraptor" class="w-full h-48 object-cover rounded-lg mb-4">
<h3 class="text-xl font-semibold text-gray-800 mb-2">Velociraptor</h3>
<p class="text-gray-600">Small but deadly, these intelligent predators hunted in packs with sickle-shaped claws.</p>
</div>
</div>
</section>
<section class="mb-16 bg-white rounded-xl shadow-lg p-8">
<h2 class="text-2xl font-bold text-center mb-6 text-gray-800">Dinosaur Timeline</h2>
<div class="relative">
<div class="absolute h-full w-1 bg-gray-200 left-1/2 transform -translate-x-1/2"></div>
<div class="mb-8 flex justify-between items-center w-full right-timeline">
<div class="order-1 w-5/12"></div>
<div class="order-1 w-5/12 px-4 py-2">
<h4 class="text-lg font-semibold">Triassic Period</h4>
<p class="text-sm text-gray-600">First dinosaurs appear (252-201 million years ago)</p>
</div>
<div class="order-1 flex items-center justify-center w-8 h-8 rounded-full bg-blue-500 text-white">
1
</div>
</div>
<div class="mb-8 flex justify-between items-center w-full left-timeline">
<div class="order-1 w-5/12 px-4 py-2 text-right">
<h4 class="text-lg font-semibold">Jurassic Period</h4>
<p class="text-sm text-gray-600">Dinosaurs diversify (201-145 million years ago)</p>
</div>
<div class="order-1 w-5/12"></div>
<div class="order-1 flex items-center justify-center w-8 h-8 rounded-full bg-green-500 text-white">
2
</div>
</div>
<div class="mb-8 flex justify-between items-center w-full right-timeline">
<div class="order-1 w-5/12"></div>
<div class="order-1 w-5/12 px-4 py-2">
<h4 class="text-lg font-semibold">Cretaceous Period</h4>
<p class="text-sm text-gray-600">Dinosaurs dominate (145-66 million years ago)</p>
</div>
<div class="order-1 flex items-center justify-center w-8 h-8 rounded-full bg-red-500 text-white">
3
</div>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="script.js"></script>
</body>
</html> |