shelter.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <link rel="stylesheet" href="style.css" />
  6. <link rel="stylesheet" href="doctors_carousel.css" />
  7. <link rel="stylesheet" href="polaroid-pets.css" />
  8. <link rel="shortcut icon" href="img/icon.svg" type="image/svg">
  9. <title>Наш приют</title>
  10. <style>
  11. @import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&display=swap');
  12. @import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Commissioner:wght@100..900&display=swap');
  13. html {
  14. height: 300%;
  15. overflow-x: hidden;
  16. }
  17. body {
  18. background:
  19. url(img/yellowCornerDoctor.png) right top no-repeat,
  20. url(img/crossesDoctor.png) left -0.2vw top 40vw no-repeat,
  21. url(img/blueDoctor.png) right bottom 30vw no-repeat,
  22. url(img/pinkCirclesDoctor.png) left bottom no-repeat;
  23. position: absolute;
  24. }
  25. </style>
  26. <script src="main.js"></script>
  27. </head>
  28. <body class="services">
  29. <div class="menu">
  30. <button class="text-menu" id="glavnaya" onclick="document.location='main_registered.html'">Главная</button>
  31. <button class="text-menu" id="uslugi" onclick="document.location='services.html'">Услуги</button>
  32. <button class="text-menu" id="vrachi" onclick="document.location='doctors.html'">Наши врачи</button>
  33. <button class="text-menu" id="pryut" onclick="scrollToTop()">Приют</button>
  34. <button class="text-menu" id="voiti" onclick="document.location='profile.html'">Профиль</button>
  35. </div>
  36. </body>
  37. </html>