Browse Source

+страничкас с отзывами готовая, карта

unknown 5 months ago
parent
commit
c0708511ae

BIN
AlterAuto/AlterAuto/assets/imgs/chel12.png


BIN
AlterAuto/AlterAuto/assets/imgs/chel13.png


+ 1 - 5
AlterAuto/AlterAuto/main.html

@@ -43,7 +43,7 @@
                     <a href="katalog.html">Каталог</a>
                     <a href="zvonok.html">Заказать звонок </a>
                     <a href="credit.html">Рассчитать кредит</a>
-                    <a href="#">Отзывы</a>
+                    <a href="otziv.html">Отзывы</a>
                     <a href="support.html">Техническая поддержка</a>
                 </div>
             </button>
@@ -372,9 +372,5 @@
             </div>
         </div>
     </footer>
-
-
-
 </body>
-
 </html>

+ 120 - 0
AlterAuto/AlterAuto/otzv10.html

@@ -0,0 +1,120 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="stylesheet" href="./assets/styles/style.css">
+    <title>Отзывы</title>
+</head>
+<body>
+    <div class="big_con" style="height: 100vh; display: flex; justify-content: center; align-items: center;">
+        <div class="block_auth" style="width: 600px; border-radius: 0;">
+            <h2 style="color: black; padding-bottom: 10px;">ОТЗЫВЫ</h2>
+            <div class="review-container">
+                <div class="review-item">
+                    <div class="profile-picture">
+                        <img src="./assets/imgs/chel13.png" alt="Профиль">
+                    </div>
+                    <div class="review-info">
+                        <p class="review-name">Дарья Титова</p>
+                        <p class="review-text">Гибкие условия кредитования. Салон предлагает гибкие условия кредитования, что позволяет приобрести автомобиль даже при ограниченном бюджете.</p>
+                    </div>
+                </div>
+            </div>
+            <div class="arrow-container" style="margin-top: 20px;">
+                <span class="arrow left-arrow" onclick="window.location.href='otzv9.html'">&lt;</span>
+                <span class="arrow right-arrow" onclick="window.location.href='otziv.html'">&gt;</span>
+            </div>
+            <span class="close" onclick="window.location.href='main.html'">&times;</span>
+        </div>
+    </div>
+    <style>
+        .big_con {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            height: 100vh;
+        }
+
+        .block_auth {
+            background-color: #fff;
+            padding: 30px;
+            border-radius: 10px;
+            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+            width: 600px;
+        }
+
+        .review-container {
+            display: flex;
+            align-items: center;
+            margin-bottom: 20px;
+        }
+
+        .review-item {
+            display: flex;
+            align-items: center;
+            padding: 20px;
+            border: 1px solid #ccc;
+            border-radius: 10px;
+            width: 100%;
+        }
+        .profile-picture {
+  width: 100px;
+  height: 100px;
+  border-radius: 50%;
+  overflow: hidden;
+  margin-right: 20px;
+  position: relative;
+}
+
+.profile-picture img {
+  width: 100%;
+  height: 100%;
+  border-radius: 50%;
+  object-fit: cover;
+  position: absolute;
+  top: 0;
+  left: 0;
+}
+
+        
+
+        .review-info {
+            flex: 1;
+        }
+
+        .review-name {
+            font-weight: bold;
+            font-size: 1.2em;
+            margin-bottom: 10px;
+        }
+
+        .review-text {
+            font-size: 1em;
+            line-height: 1.5;
+        }
+
+        .arrow-container {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            margin-top: 20px;
+        }
+
+        .arrow {
+            cursor: pointer;
+            font-size: 24px;
+            color: #777;
+        }
+
+        .close {
+            position: absolute;
+            top: 10px;
+            right: 10px;
+            font-size: 24px;
+            cursor: pointer;
+            color: #777;
+        }
+    </style>
+</body>
+</html>

+ 4 - 4
AlterAuto/AlterAuto/otzv2.html

@@ -13,16 +13,16 @@
             <div class="review-container">
                 <div class="review-item">
                     <div class="profile-picture">
-                        <img src="./assets/imgs/chel.png" alt="Профиль">
+                        <img src="./assets/imgs/chel4.png" alt="Профиль">
                     </div>
                     <div class="review-info">
-                        <p class="review-name">Иван Иванов</p>
-                        <p class="review-text">Впечатляющий выбор. АлтерАвто предлагает широкую номенклатуру импортных автомобилей, от элегантных седанов до мощных внедорожников, способных удовлетворить самые разнообразные вкусовые предпочтения.</p>
+                        <p class="review-name">Петр Петров</p>
+                        <p class="review-text">Отличный автосалон! В AlterAuto вы найдете широкий выбор импортных автомобилей. Продажа и сервисные услуги выполнены на высочайшем уровне.</p>
                     </div>
                 </div>
             </div>
             <div class="arrow-container" style="margin-top: 20px;">
-                <span class="arrow left-arrow" onclick="window.location.href='otzv2.html'">&lt;</span>
+                <span class="arrow left-arrow" onclick="window.location.href='otziv.html'">&lt;</span>
                 <span class="arrow right-arrow" onclick="window.location.href='otzv3.html'">&gt;</span>
             </div>
             <span class="close" onclick="window.location.href='main.html'">&times;</span>

+ 120 - 0
AlterAuto/AlterAuto/otzv3.html

@@ -0,0 +1,120 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="stylesheet" href="./assets/styles/style.css">
+    <title>Отзывы</title>
+</head>
+<body>
+    <div class="big_con" style="height: 100vh; display: flex; justify-content: center; align-items: center;">
+        <div class="block_auth" style="width: 600px; border-radius: 0;">
+            <h2 style="color: black; padding-bottom: 10px;">ОТЗЫВЫ</h2>
+            <div class="review-container">
+                <div class="review-item">
+                    <div class="profile-picture">
+                        <img src="./assets/imgs/chel3.png" alt="Профиль">
+                    </div>
+                    <div class="review-info">
+                        <p class="review-name">Екатерина Коваль</p>
+                        <p class="review-text">Качественная подготовка автомобилей. Все автомобили в AlterAuto проходят тщательную подготовку перед продажей, что гарантирует их хорошее состояние.</p>
+                    </div>
+                </div>
+            </div>
+            <div class="arrow-container" style="margin-top: 20px;">
+                <span class="arrow left-arrow" onclick="window.location.href='otzv2.html'">&lt;</span>
+                <span class="arrow right-arrow" onclick="window.location.href='otzv4.html'">&gt;</span>
+            </div>
+            <span class="close" onclick="window.location.href='main.html'">&times;</span>
+        </div>
+    </div>
+    <style>
+        .big_con {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            height: 100vh;
+        }
+
+        .block_auth {
+            background-color: #fff;
+            padding: 30px;
+            border-radius: 10px;
+            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+            width: 600px;
+        }
+
+        .review-container {
+            display: flex;
+            align-items: center;
+            margin-bottom: 20px;
+        }
+
+        .review-item {
+            display: flex;
+            align-items: center;
+            padding: 20px;
+            border: 1px solid #ccc;
+            border-radius: 10px;
+            width: 100%;
+        }
+        .profile-picture {
+  width: 100px;
+  height: 100px;
+  border-radius: 50%;
+  overflow: hidden;
+  margin-right: 20px;
+  position: relative;
+}
+
+.profile-picture img {
+  width: 100%;
+  height: 100%;
+  border-radius: 50%;
+  object-fit: cover;
+  position: absolute;
+  top: 0;
+  left: 0;
+}
+
+        
+
+        .review-info {
+            flex: 1;
+        }
+
+        .review-name {
+            font-weight: bold;
+            font-size: 1.2em;
+            margin-bottom: 10px;
+        }
+
+        .review-text {
+            font-size: 1em;
+            line-height: 1.5;
+        }
+
+        .arrow-container {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            margin-top: 20px;
+        }
+
+        .arrow {
+            cursor: pointer;
+            font-size: 24px;
+            color: #777;
+        }
+
+        .close {
+            position: absolute;
+            top: 10px;
+            right: 10px;
+            font-size: 24px;
+            cursor: pointer;
+            color: #777;
+        }
+    </style>
+</body>
+</html>

+ 120 - 0
AlterAuto/AlterAuto/otzv4.html

@@ -0,0 +1,120 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="stylesheet" href="./assets/styles/style.css">
+    <title>Отзывы</title>
+</head>
+<body>
+    <div class="big_con" style="height: 100vh; display: flex; justify-content: center; align-items: center;">
+        <div class="block_auth" style="width: 600px; border-radius: 0;">
+            <h2 style="color: black; padding-bottom: 10px;">ОТЗЫВЫ</h2>
+            <div class="review-container">
+                <div class="review-item">
+                    <div class="profile-picture">
+                        <img src="./assets/imgs/chel6.png" alt="Профиль">
+                    </div>
+                    <div class="review-info">
+                        <p class="review-name">Юлия Широва</p>
+                        <p class="review-text">Быстрая доставка. Если автомобиль недоступен в наличии, AlterAuto гарантирует быструю доставку из других стран.</p>
+                    </div>
+                </div>
+            </div>
+            <div class="arrow-container" style="margin-top: 20px;">
+                <span class="arrow left-arrow" onclick="window.location.href='otzv3.html'">&lt;</span>
+                <span class="arrow right-arrow" onclick="window.location.href='otzv5.html'">&gt;</span>
+            </div>
+            <span class="close" onclick="window.location.href='main.html'">&times;</span>
+        </div>
+    </div>
+    <style>
+        .big_con {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            height: 100vh;
+        }
+
+        .block_auth {
+            background-color: #fff;
+            padding: 30px;
+            border-radius: 10px;
+            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+            width: 600px;
+        }
+
+        .review-container {
+            display: flex;
+            align-items: center;
+            margin-bottom: 20px;
+        }
+
+        .review-item {
+            display: flex;
+            align-items: center;
+            padding: 20px;
+            border: 1px solid #ccc;
+            border-radius: 10px;
+            width: 100%;
+        }
+        .profile-picture {
+  width: 100px;
+  height: 100px;
+  border-radius: 50%;
+  overflow: hidden;
+  margin-right: 20px;
+  position: relative;
+}
+
+.profile-picture img {
+  width: 100%;
+  height: 100%;
+  border-radius: 50%;
+  object-fit: cover;
+  position: absolute;
+  top: 0;
+  left: 0;
+}
+
+        
+
+        .review-info {
+            flex: 1;
+        }
+
+        .review-name {
+            font-weight: bold;
+            font-size: 1.2em;
+            margin-bottom: 10px;
+        }
+
+        .review-text {
+            font-size: 1em;
+            line-height: 1.5;
+        }
+
+        .arrow-container {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            margin-top: 20px;
+        }
+
+        .arrow {
+            cursor: pointer;
+            font-size: 24px;
+            color: #777;
+        }
+
+        .close {
+            position: absolute;
+            top: 10px;
+            right: 10px;
+            font-size: 24px;
+            cursor: pointer;
+            color: #777;
+        }
+    </style>
+</body>
+</html>

+ 120 - 0
AlterAuto/AlterAuto/otzv5.html

@@ -0,0 +1,120 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="stylesheet" href="./assets/styles/style.css">
+    <title>Отзывы</title>
+</head>
+<body>
+    <div class="big_con" style="height: 100vh; display: flex; justify-content: center; align-items: center;">
+        <div class="block_auth" style="width: 600px; border-radius: 0;">
+            <h2 style="color: black; padding-bottom: 10px;">ОТЗЫВЫ</h2>
+            <div class="review-container">
+                <div class="review-item">
+                    <div class="profile-picture">
+                        <img src="./assets/imgs/chel10.png" alt="Профиль">
+                    </div>
+                    <div class="review-info">
+                        <p class="review-name">Вячеслав Миронов</p>
+                        <p class="review-text">Качественная консультация. Персонал AlterAuto всегда готов помочь и дать профессиональную консультацию при выборе автомобиля.</p>
+                    </div>
+                </div>
+            </div>
+            <div class="arrow-container" style="margin-top: 20px;">
+                <span class="arrow left-arrow" onclick="window.location.href='otzv4.html'">&lt;</span>
+                <span class="arrow right-arrow" onclick="window.location.href='otzv6.html'">&gt;</span>
+            </div>
+            <span class="close" onclick="window.location.href='main.html'">&times;</span>
+        </div>
+    </div>
+    <style>
+        .big_con {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            height: 100vh;
+        }
+
+        .block_auth {
+            background-color: #fff;
+            padding: 30px;
+            border-radius: 10px;
+            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+            width: 600px;
+        }
+
+        .review-container {
+            display: flex;
+            align-items: center;
+            margin-bottom: 20px;
+        }
+
+        .review-item {
+            display: flex;
+            align-items: center;
+            padding: 20px;
+            border: 1px solid #ccc;
+            border-radius: 10px;
+            width: 100%;
+        }
+        .profile-picture {
+  width: 100px;
+  height: 100px;
+  border-radius: 50%;
+  overflow: hidden;
+  margin-right: 20px;
+  position: relative;
+}
+
+.profile-picture img {
+  width: 100%;
+  height: 100%;
+  border-radius: 50%;
+  object-fit: cover;
+  position: absolute;
+  top: 0;
+  left: 0;
+}
+
+        
+
+        .review-info {
+            flex: 1;
+        }
+
+        .review-name {
+            font-weight: bold;
+            font-size: 1.2em;
+            margin-bottom: 10px;
+        }
+
+        .review-text {
+            font-size: 1em;
+            line-height: 1.5;
+        }
+
+        .arrow-container {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            margin-top: 20px;
+        }
+
+        .arrow {
+            cursor: pointer;
+            font-size: 24px;
+            color: #777;
+        }
+
+        .close {
+            position: absolute;
+            top: 10px;
+            right: 10px;
+            font-size: 24px;
+            cursor: pointer;
+            color: #777;
+        }
+    </style>
+</body>
+</html>

+ 120 - 0
AlterAuto/AlterAuto/otzv6.html

@@ -0,0 +1,120 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="stylesheet" href="./assets/styles/style.css">
+    <title>Отзывы</title>
+</head>
+<body>
+    <div class="big_con" style="height: 100vh; display: flex; justify-content: center; align-items: center;">
+        <div class="block_auth" style="width: 600px; border-radius: 0;">
+            <h2 style="color: black; padding-bottom: 10px;">ОТЗЫВЫ</h2>
+            <div class="review-container">
+                <div class="review-item">
+                    <div class="profile-picture">
+                        <img src="./assets/imgs/chel9.png" alt="Профиль">
+                    </div>
+                    <div class="review-info">
+                        <p class="review-name">Мирослав Куклин</p>
+                        <p class="review-text">Удобное тестирование. AlterAuto предоставляет возможность проехаться на автомобиле перед покупкой, что позволяет убедиться в его качестве.</p>
+                    </div>
+                </div>
+            </div>
+            <div class="arrow-container" style="margin-top: 20px;">
+                <span class="arrow left-arrow" onclick="window.location.href='otzv5.html'">&lt;</span>
+                <span class="arrow right-arrow" onclick="window.location.href='otzv7.html'">&gt;</span>
+            </div>
+            <span class="close" onclick="window.location.href='main.html'">&times;</span>
+        </div>
+    </div>
+    <style>
+        .big_con {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            height: 100vh;
+        }
+
+        .block_auth {
+            background-color: #fff;
+            padding: 30px;
+            border-radius: 10px;
+            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+            width: 600px;
+        }
+
+        .review-container {
+            display: flex;
+            align-items: center;
+            margin-bottom: 20px;
+        }
+
+        .review-item {
+            display: flex;
+            align-items: center;
+            padding: 20px;
+            border: 1px solid #ccc;
+            border-radius: 10px;
+            width: 100%;
+        }
+        .profile-picture {
+  width: 100px;
+  height: 100px;
+  border-radius: 50%;
+  overflow: hidden;
+  margin-right: 20px;
+  position: relative;
+}
+
+.profile-picture img {
+  width: 100%;
+  height: 100%;
+  border-radius: 50%;
+  object-fit: cover;
+  position: absolute;
+  top: 0;
+  left: 0;
+}
+
+        
+
+        .review-info {
+            flex: 1;
+        }
+
+        .review-name {
+            font-weight: bold;
+            font-size: 1.2em;
+            margin-bottom: 10px;
+        }
+
+        .review-text {
+            font-size: 1em;
+            line-height: 1.5;
+        }
+
+        .arrow-container {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            margin-top: 20px;
+        }
+
+        .arrow {
+            cursor: pointer;
+            font-size: 24px;
+            color: #777;
+        }
+
+        .close {
+            position: absolute;
+            top: 10px;
+            right: 10px;
+            font-size: 24px;
+            cursor: pointer;
+            color: #777;
+        }
+    </style>
+</body>
+</html>

+ 120 - 0
AlterAuto/AlterAuto/otzv7.html

@@ -0,0 +1,120 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="stylesheet" href="./assets/styles/style.css">
+    <title>Отзывы</title>
+</head>
+<body>
+    <div class="big_con" style="height: 100vh; display: flex; justify-content: center; align-items: center;">
+        <div class="block_auth" style="width: 600px; border-radius: 0;">
+            <h2 style="color: black; padding-bottom: 10px;">ОТЗЫВЫ</h2>
+            <div class="review-container">
+                <div class="review-item">
+                    <div class="profile-picture">
+                        <img src="./assets/imgs/chel89.png" alt="Профиль">
+                    </div>
+                    <div class="review-info">
+                        <p class="review-name">Анастасия Богова</p>
+                        <p class="review-text">Рекомендую AlterAuto! Я рекомендую всем, кто ищет качественный импортный автомобиль и профессиональное обслуживание.</p>
+                    </div>
+                </div>
+            </div>
+            <div class="arrow-container" style="margin-top: 20px;">
+                <span class="arrow left-arrow" onclick="window.location.href='otzv6.html'">&lt;</span>
+                <span class="arrow right-arrow" onclick="window.location.href='otzv8.html'">&gt;</span>
+            </div>
+            <span class="close" onclick="window.location.href='main.html'">&times;</span>
+        </div>
+    </div>
+    <style>
+        .big_con {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            height: 100vh;
+        }
+
+        .block_auth {
+            background-color: #fff;
+            padding: 30px;
+            border-radius: 10px;
+            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+            width: 600px;
+        }
+
+        .review-container {
+            display: flex;
+            align-items: center;
+            margin-bottom: 20px;
+        }
+
+        .review-item {
+            display: flex;
+            align-items: center;
+            padding: 20px;
+            border: 1px solid #ccc;
+            border-radius: 10px;
+            width: 100%;
+        }
+        .profile-picture {
+  width: 100px;
+  height: 100px;
+  border-radius: 50%;
+  overflow: hidden;
+  margin-right: 20px;
+  position: relative;
+}
+
+.profile-picture img {
+  width: 100%;
+  height: 100%;
+  border-radius: 50%;
+  object-fit: cover;
+  position: absolute;
+  top: 0;
+  left: 0;
+}
+
+        
+
+        .review-info {
+            flex: 1;
+        }
+
+        .review-name {
+            font-weight: bold;
+            font-size: 1.2em;
+            margin-bottom: 10px;
+        }
+
+        .review-text {
+            font-size: 1em;
+            line-height: 1.5;
+        }
+
+        .arrow-container {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            margin-top: 20px;
+        }
+
+        .arrow {
+            cursor: pointer;
+            font-size: 24px;
+            color: #777;
+        }
+
+        .close {
+            position: absolute;
+            top: 10px;
+            right: 10px;
+            font-size: 24px;
+            cursor: pointer;
+            color: #777;
+        }
+    </style>
+</body>
+</html>

+ 120 - 0
AlterAuto/AlterAuto/otzv8.html

@@ -0,0 +1,120 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="stylesheet" href="./assets/styles/style.css">
+    <title>Отзывы</title>
+</head>
+<body>
+    <div class="big_con" style="height: 100vh; display: flex; justify-content: center; align-items: center;">
+        <div class="block_auth" style="width: 600px; border-radius: 0;">
+            <h2 style="color: black; padding-bottom: 10px;">ОТЗЫВЫ</h2>
+            <div class="review-container">
+                <div class="review-item">
+                    <div class="profile-picture">
+                        <img src="./assets/imgs/chel7.png" alt="Профиль">
+                    </div>
+                    <div class="review-info">
+                        <p class="review-name">Егор Беляков</p>
+                        <p class="review-text">Профессиональный подход. Менеджеры салона знают свой товар и помогли мне выбрать идеальный автомобиль для моих нужд.</p>
+                    </div>
+                </div>
+            </div>
+            <div class="arrow-container" style="margin-top: 20px;">
+                <span class="arrow left-arrow" onclick="window.location.href='otzv7.html'">&lt;</span>
+                <span class="arrow right-arrow" onclick="window.location.href='otzv9.html'">&gt;</span>
+            </div>
+            <span class="close" onclick="window.location.href='main.html'">&times;</span>
+        </div>
+    </div>
+    <style>
+        .big_con {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            height: 100vh;
+        }
+
+        .block_auth {
+            background-color: #fff;
+            padding: 30px;
+            border-radius: 10px;
+            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+            width: 600px;
+        }
+
+        .review-container {
+            display: flex;
+            align-items: center;
+            margin-bottom: 20px;
+        }
+
+        .review-item {
+            display: flex;
+            align-items: center;
+            padding: 20px;
+            border: 1px solid #ccc;
+            border-radius: 10px;
+            width: 100%;
+        }
+        .profile-picture {
+  width: 100px;
+  height: 100px;
+  border-radius: 50%;
+  overflow: hidden;
+  margin-right: 20px;
+  position: relative;
+}
+
+.profile-picture img {
+  width: 100%;
+  height: 100%;
+  border-radius: 50%;
+  object-fit: cover;
+  position: absolute;
+  top: 0;
+  left: 0;
+}
+
+        
+
+        .review-info {
+            flex: 1;
+        }
+
+        .review-name {
+            font-weight: bold;
+            font-size: 1.2em;
+            margin-bottom: 10px;
+        }
+
+        .review-text {
+            font-size: 1em;
+            line-height: 1.5;
+        }
+
+        .arrow-container {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            margin-top: 20px;
+        }
+
+        .arrow {
+            cursor: pointer;
+            font-size: 24px;
+            color: #777;
+        }
+
+        .close {
+            position: absolute;
+            top: 10px;
+            right: 10px;
+            font-size: 24px;
+            cursor: pointer;
+            color: #777;
+        }
+    </style>
+</body>
+</html>

+ 120 - 0
AlterAuto/AlterAuto/otzv9.html

@@ -0,0 +1,120 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="stylesheet" href="./assets/styles/style.css">
+    <title>Отзывы</title>
+</head>
+<body>
+    <div class="big_con" style="height: 100vh; display: flex; justify-content: center; align-items: center;">
+        <div class="block_auth" style="width: 600px; border-radius: 0;">
+            <h2 style="color: black; padding-bottom: 10px;">ОТЗЫВЫ</h2>
+            <div class="review-container">
+                <div class="review-item">
+                    <div class="profile-picture">
+                        <img src="./assets/imgs/chel12.png" alt="Профиль">
+                    </div>
+                    <div class="review-info">
+                        <p class="review-name">Илья Головнов</p>
+                        <p class="review-text">Доступные цены. Цены на автомобили в этом салоне вполне доступные, что является большим плюсом.</p>
+                    </div>
+                </div>
+            </div>
+            <div class="arrow-container" style="margin-top: 20px;">
+                <span class="arrow left-arrow" onclick="window.location.href='otzv8.html'">&lt;</span>
+                <span class="arrow right-arrow" onclick="window.location.href='otzv10.html'">&gt;</span>
+            </div>
+            <span class="close" onclick="window.location.href='main.html'">&times;</span>
+        </div>
+    </div>
+    <style>
+        .big_con {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            height: 100vh;
+        }
+
+        .block_auth {
+            background-color: #fff;
+            padding: 30px;
+            border-radius: 10px;
+            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+            width: 600px;
+        }
+
+        .review-container {
+            display: flex;
+            align-items: center;
+            margin-bottom: 20px;
+        }
+
+        .review-item {
+            display: flex;
+            align-items: center;
+            padding: 20px;
+            border: 1px solid #ccc;
+            border-radius: 10px;
+            width: 100%;
+        }
+        .profile-picture {
+  width: 100px;
+  height: 100px;
+  border-radius: 50%;
+  overflow: hidden;
+  margin-right: 20px;
+  position: relative;
+}
+
+.profile-picture img {
+  width: 100%;
+  height: 100%;
+  border-radius: 50%;
+  object-fit: cover;
+  position: absolute;
+  top: 0;
+  left: 0;
+}
+
+        
+
+        .review-info {
+            flex: 1;
+        }
+
+        .review-name {
+            font-weight: bold;
+            font-size: 1.2em;
+            margin-bottom: 10px;
+        }
+
+        .review-text {
+            font-size: 1em;
+            line-height: 1.5;
+        }
+
+        .arrow-container {
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            margin-top: 20px;
+        }
+
+        .arrow {
+            cursor: pointer;
+            font-size: 24px;
+            color: #777;
+        }
+
+        .close {
+            position: absolute;
+            top: 10px;
+            right: 10px;
+            font-size: 24px;
+            cursor: pointer;
+            color: #777;
+        }
+    </style>
+</body>
+</html>