l1.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>HTML</title>
  7. <style>
  8. .image {
  9. width: 400px;
  10. height: auto;
  11. }
  12. .image2 {
  13. text-align: centr;
  14. }
  15. .image2 {
  16. display: inline-block;
  17. margin: 10px;
  18. }
  19. body {
  20. background-color: black;
  21. color: white;
  22. }
  23. a {
  24. color: red;
  25. }
  26. #about h2 {
  27. display: inline-block;
  28. width: 100%;
  29. }
  30. #about p {
  31. display: inline-block;
  32. width: 100%;
  33. }
  34. #about p sss:hover,
  35. #about h2 sss:hover {
  36. color: yellow;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <header>
  42. <h1>Site</h1>
  43. </header>
  44. <nav>
  45. <a href="l2.html">Переход</a>
  46. <a href="l3.html">Переход 2</a>
  47. <a href="#about">Обо мне</a>
  48. </nav>
  49. <main>
  50. <div class="image2">
  51. <a href="https://images.prom.ua/2987667453_w1280_h640_2987667453.jpg">
  52. <img src="https://images.prom.ua/2987667453_w1280_h640_2987667453.jpg" alt="пушок" class="image">
  53. </a>
  54. <a href="https://esd.adventist.org/wp-content/uploads/2023/07/6-2.jpg">
  55. <img src="https://esd.adventist.org/wp-content/uploads/2023/07/6-2.jpg" alt="сергей" class="image">
  56. </a>
  57. </div>
  58. </main>
  59. <footer>
  60. <section id="about">
  61. <div class="color">
  62. <h2><sss>Я да</sss></h2>
  63. <p><sss>ДА да</sss></p>
  64. </div>
  65. </section>
  66. </footer>
  67. </body>
  68. </html>