1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <link rel="stylesheet" href="style.css" />
- <link rel="stylesheet" href="doctors_carousel.css" />
- <link rel="stylesheet" href="polaroid-pets.css" />
- <link rel="shortcut icon" href="img/icon.svg" type="image/svg">
- <title>Наш приют</title>
- <style>
- @import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&display=swap');
- @import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Commissioner:wght@100..900&display=swap');
- html {
- height: 300%;
- overflow-x: hidden;
- }
- body {
- background:
- url(img/yellowCornerDoctor.png) right top no-repeat,
- url(img/crossesDoctor.png) left -0.2vw top 40vw no-repeat,
- url(img/blueDoctor.png) right bottom 30vw no-repeat,
- url(img/pinkCirclesDoctor.png) left bottom no-repeat;
- position: absolute;
- }
- </style>
- <script src="main.js"></script>
- </head>
- <body class="services">
- <div class="menu">
- <button class="text-menu" id="glavnaya" onclick="document.location='main_registered.html'">Главная</button>
- <button class="text-menu" id="uslugi" onclick="document.location='services.html'">Услуги</button>
- <button class="text-menu" id="vrachi" onclick="document.location='doctors.html'">Наши врачи</button>
- <button class="text-menu" id="pryut" onclick="scrollToTop()">Приют</button>
- <button class="text-menu" id="voiti" onclick="document.location='profile.html'">Профиль</button>
- </div>
-
- </body>
- </html>
|