Guest User

index.html

a guest
Dec 18th, 2024
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. <!DOCTYPE html>
  2. html lang="en">
  3. head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Fantastic Frogs</title>
  7. <link rel="stylesheet" href="styles.css">
  8. /head>
  9. body>
  10. <nav>
  11. <div class="logo">🐸 Fantastic Frogs</div>
  12. <ul>
  13. <li><a href="#home">Home</a></li>
  14. <li><a href="#gallery">Gallery</a></li>
  15. <li><a href="#facts">Facts</a></li>
  16. </ul>
  17. </nav>
  18. <header id="home">
  19. <h1>Discover the Amazing World of Frogs</h1>
  20. <p>Explore these fascinating amphibians in all their glory</p>
  21. </header>
  22. <section id="gallery">
  23. <h2>Frog Gallery</h2>
  24. <div class="gallery-grid">
  25. <div class="gallery-item">
  26. <img src="https://images.unsplash.com/photo-1538438253612-287c9fc9217e" alt="Red-eyed Tree Frog">
  27. <p>Red-eyed Tree Frog</p>
  28. </div>
  29. <div class="gallery-item">
  30. <img src="https://images.unsplash.com/photo-1579380656108-f98e4df8ea62" alt="Green Tree Frog">
  31. <p>Green Tree Frog</p>
  32. </div>
  33. <div class="gallery-item">
  34. <img src="https://images.unsplash.com/photo-1598537179958-687e6cc625fb" alt="Poison Dart Frog">
  35. <p>Poison Dart Frog</p>
  36. </div>
  37. </div>
  38. </section>
  39. <section id="facts">
  40. <h2>Fun Frog Facts</h2>
  41. <div class="facts-grid">
  42. <div class="fact-card">
  43. <h3>🌍 Global Presence</h3>
  44. <p>Frogs can be found on every continent except Antarctica!</p>
  45. </div>
  46. <div class="fact-card">
  47. <h3>👀 Night Vision</h3>
  48. <p>Most frogs have excellent night vision and are nocturnal.</p>
  49. </div>
  50. <div class="fact-card">
  51. <h3>💧 Skin Facts</h3>
  52. <p>Frogs don't need to drink water - they absorb it through their skin!</p>
  53. </div>
  54. </div>
  55. </section>
  56. <footer>
  57. <p>Created with 💚 for frog enthusiasts</p>
  58. </footer>
  59. /body>
  60. /html>
Advertisement
Add Comment
Please, Sign In to add comment