12345678910111213141516171819202122232425262728293031323334353637 |
- <!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">
- <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 {
- overflow-x: hidden;
- }
- </style>
- <script src="main.js"></script>
- <title>Ваш профиль</title>
- </head>
- <body class="registration_form">
- <a href="main_registered.html"><input type="button" value="Назад" class="button-back-p"></a>
-
- <a href="updateProfileUser_form.html"><input type="button" value="Редактировать" class="button-edit"></a>
- <div class="icon-user"></div>
- <div class="info-user">
- <p class="name-user">Фёдорова Маргарита</p>
- <p class="email-user">fedorova.margarita@gmail.com</p>
- </div>
- <div class="line-user"></div>
- <div>
- <p class="pets-user">Мои питомцы</p>
- <a href="updateProfileAnimal_form.html"><img src="img/addPet.png" class="pets-add"></a>
-
- </div>
- <!-- <div class="out">Выйти из профиля</div> -->
- </body>
- </html>
|