This commit is contained in:
2025-04-08 13:03:08 +04:00
parent c8f55ed7b6
commit a73f453327
25 changed files with 1324 additions and 0 deletions

151
basket.css Normal file
View File

@@ -0,0 +1,151 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 1200px;
font-size: 18px;
font-family: sans-serif;
margin: 0;
padding: 0;
overflow: hidden;
}
a:link,
a:visited {
color: #dbe2ef;
text-decoration: none;
}
a:hover {
text-decoration: none;
color: white;
}
.header {
position: fixed;
display: flex;
align-items: center;
width: 100%;
height: 90px;
background: #112d4e;
padding: 0;
color: #dbe2ef;
top: 0;
left: 0;
}
.logo-container {
display: flex;
align-items: center;
margin-right: 20px;
}
.logo img {
width: 75px;
height: 75px;
border-radius: 15px;
margin-left: 10px;
margin-top: 5px;
}
.header h1 {
margin: 0 20px;
font-size: 1.5em;
white-space: nowrap;
}
.menu {
display: flex;
align-items: center;
list-style-type: none;
margin-left: auto;
}
.menu > li {
margin-right: 30px;
display: flex;
align-items: center;
}
.menu > li:last-of-type {
margin-right: 0;
}
.dropdown {
position: relative;
}
.dropdown > a {
cursor: pointer;
color: #dbe2ef;
}
.dropdown:hover .features-menu {
display: flex;
}
.features-menu {
display: none;
flex-direction: column;
background: #b2d6ff;
border-radius: 5px;
padding-top: 10px;
position: absolute;
top: 40px;
left: 0;
z-index: 1;
align-items: center;
}
.features-menu li {
border-bottom: 1px solid #fff;
font-size: 0.8em;
width: 100%;
padding: 10px 20px;
text-align: center;
}
.features-menu li:last-of-type {
border-bottom: none;
}
.features-menu a {
color: #112d4e;
}
.sad{
padding-top: 150px;
color: #00264d;
text-align: center;
padding-bottom: 100px;
}
.footer {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #00264d;
color: #b2d6ff;
}
.social-container {
display: flex;
align-items: center;
}
.social {
display: flex;
align-items: center;
margin-right: 20px;
}
.social h2, .social h1 {
margin-left: 10px;
}
.contact-info {
text-align: right;
}

58
basket.html Normal file
View File

@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<title>cyxaruk shop catalog</title>
<link rel="stylesheet" href="basket.css" />
</head>
<body>
<div class="header">
<a href="main.html" class="logo">
<img src="фотки/cyxaruk shop logo.jpg" alt="сухарик шоп">
</a>
<h1>cyxaruk shop</h1>
<ul class="menu">
<li class="dropdown">
<a href="catalog.html">Catalog ▾</a>
<ul class="features-menu">
<li><a href="#">For Men</a></li>
<li><a href="#">For Women</a></li>
<li><a href="#">For Kids</a></li>
<li><a href="#">Order from abroad</a></li>
</ul>
</li>
<li><a href="contacts.html">Contacts</a></li>
<li><a href="likes.html">Likes</a></li>
<li><a href="basket.html">
<img src="фотки/basket.png" width="50" height="50" alt="корзина">
</a></li>
</ul>
</div>
<div class="sad">
<h1>Здесь будут лежать твои товары, <br/> а пока здесь так пусто...</h1>
<img src="фотки/sad1.jpg">
</div>
<div class="footer">
<div class="social-container">
<div class="social">
<a href="https://t.me/cyxarukShop">
<img src="фотки/telega.png" width="100" height="100" alt="Telegram">
</a>
<h2>← also follow us on tg</h2>
</div>
<div class="social">
<a href="https://www.avito.ru/brands/6f43f8798e9eb61c3350f391762e98b3/all/odezhda_obuv_aksessuary?gdlkerfdnwq=101&page_from=from_item_card&iid=3935618105&sellerId=81d843720716be16ce230bba484bce75">
<img src="фотки/avito.png" width="80" height="80" alt="Avito">
</a>
<h1>← and avito</h1>
</div>
</div>
<div class="contact-info">
<h2>89876320523</h2>
<h2>Ulyanovsk, Russia</h2>
</div>
</div>
</body>
</html>

187
catalog.css Normal file
View File

@@ -0,0 +1,187 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 1200px;
font-size: 18px;
font-family: sans-serif;
margin: 0;
padding: 0;
}
a:link,
a:visited {
color: #dbe2ef;
text-decoration: none;
}
a:hover {
text-decoration: none;
color: white;
}
.header {
position: fixed;
display: flex;
align-items: center;
width: 100%;
height: 90px;
background: #112d4e;
padding: 0;
color: #dbe2ef;
top: 0;
left: 0;
}
.logo-container {
display: flex;
align-items: center;
margin-right: 20px;
}
.logo img {
width: 75px;
height: 75px;
border-radius: 15px;
margin-left: 10px;
margin-top: 5px;
}
.header h1 {
margin: 0 20px;
font-size: 1.5em;
white-space: nowrap;
}
.menu {
display: flex;
align-items: center;
list-style-type: none;
margin-left: auto;
}
.menu > li {
margin-right: 30px;
display: flex;
align-items: center;
}
.menu > li:last-of-type {
margin-right: 0;
}
.dropdown {
position: relative;
}
.dropdown > a {
cursor: pointer;
color: #dbe2ef;
}
.dropdown:hover .features-menu {
display: flex;
}
.features-menu {
display: none;
flex-direction: column;
background: #b2d6ff;
border-radius: 5px;
padding-top: 10px;
position: absolute;
top: 40px;
left: 0;
z-index: 1;
align-items: center;
}
.features-menu li {
border-bottom: 1px solid #fff;
font-size: 0.8em;
width: 100%;
padding: 10px 20px;
text-align: center;
}
.features-menu li:last-of-type {
border-bottom: none;
}
.features-menu a {
color: #112d4e;
}
.card {
padding-top: 50px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
width: 350px;
margin: auto;
text-align: center;
font-family: arial;
}
.price {
color: grey;
font-size: 22px;
}
.card button {
border: none;
outline: 0;
padding: 12px;
color: white;
background-color: #00264d;
text-align: center;
cursor: pointer;
width: 100%;
font-size: 18px;
}
.card button:hover {
opacity: 0.7;
}
.cards {
display: grid;
/* Автоматически заполняем на всю ширину grid-контейнера */
grid-template-columns: repeat(auto-fill, 400px);
width: 100%;
justify-content: center;
justify-items: center; /* Размещаем карточку по центру */
column-gap: 60px; /* Отступ между колонками */
row-gap: 40px; /* Отступ между рядами */
margin: 0 auto;
padding-bottom: 50px;
padding-top: 50px;
}
.footer {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #00264d;
color: #b2d6ff;
}
.social-container {
display: flex;
align-items: center;
}
.social {
display: flex;
align-items: center;
margin-right: 20px;
}
.social h2, .social h1 {
margin-left: 10px;
}
.contact-info {
text-align: right;
}

108
catalog.html Normal file
View File

@@ -0,0 +1,108 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<title>cyxaruk shop catalog</title>
<link rel="stylesheet" href="catalog.css" />
</head>
<body>
<div class="header">
<a href="main.html" class="logo">
<img src="фотки/cyxaruk shop logo.jpg" alt="сухарик шоп">
</a>
<h1>cyxaruk shop</h1>
<ul class="menu">
<li class="dropdown">
<a href="catalog.html">Catalog ▾</a>
<ul class="features-menu">
<li><a href="#">For Men</a></li>
<li><a href="#">For Women</a></li>
<li><a href="#">For Kids</a></li>
<li><a href="#">Order from abroad</a></li>
</ul>
</li>
<li><a href="contacts.html">Contacts</a></li>
<li><a href="likes.html">Likes</a></li>
<li><a href="basket.html">
<img src="фотки/basket.png" width="50" height="50" alt="корзина">
</a></li>
</ul>
</div>
<h1 style="text-align:center">Карточка товара</h1>
<div class="cards">
<div class="card">
<img src="фотки/stonik.jpg" alt="Стон" style="width:100%">
<h1>Stone Island</h1>
<p class="price">$1999.99</p>
<p>super idol rovny pacan,<br/> groza rayona, mother's modnik,<br/> патч на месте</p>
<p><button>Добавить в корзину</button></p>
</div>
<div class="card">
<img src="фотки/napapisaj.jpg" alt="Напапири" style="width:100%">
<h1>Napapisaj</h1>
<p class="price">$1499.99</p>
<p>super idol rovny pacan,<br/> groza rayona, mother's modnik,<br/> +rep from brothers</p>
<p><button>Добавить в корзину</button></p>
</div>
<div class="card">
<img src="фотки/adidas.jpg" alt="адиадс" style="width:100%">
<h1>Adidas</h1>
<p class="price">$19.99</p>
<p>sportik, street,<br/> baskemtball, air, <br>old school</p>
<p><button>Добавить в корзину</button></p>
</div>
</div>
<div class="cards">
<div class="card">
<img src="фотки/fred perry.jpg" alt="перри" style="width:100%">
<h1>Fred Perry</h1>
<p class="price">$1299.99</p>
<p>style, nice, <br/>mother's modnik, cotton, <br/>the platypus</p>
<p><button>Добавить в корзину</button></p>
</div>
<div class="card">
<img src="фотки/samba.png" alt="самба" style="width:100%">
<h1>Adidas Samba</h1>
<p class="price">$449.99</p>
<p>super idol rovny pacan,<br/> groza rayona, mother's modnik,<br/> +rep from brothers</p>
<p><button>Добавить в корзину</button></p>
</div>
<div class="card">
<img src="фотки/lacoste.png" alt="лакост" style="width:100%">
<h1>Lacoste</h1>
<p class="price">$299.99</p>
<p>tyle, nice, <br/>mother's modnik, cotton, <br/>krokodil</p>
<p><button>Добавить в корзину</button></p>
</div>
</div>
<div class="footer">
<div class="social-container">
<div class="social">
<a href="https://t.me/cyxarukShop">
<img src="фотки/telega.png" width="100" height="100" alt="Telegram">
</a>
<h2>← also follow us on tg</h2>
</div>
<div class="social">
<a href="https://www.avito.ru/brands/6f43f8798e9eb61c3350f391762e98b3/all/odezhda_obuv_aksessuary?gdlkerfdnwq=101&page_from=from_item_card&iid=3935618105&sellerId=81d843720716be16ce230bba484bce75">
<img src="фотки/avito.png" width="80" height="80" alt="Avito">
</a>
<h1>← and avito</h1>
</div>
</div>
<div class="contact-info">
<h2>89876320523</h2>
<h2>Ulyanovsk, Russia</h2>
</div>
</div>
</body>
</html>

163
contacts.css Normal file
View File

@@ -0,0 +1,163 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 1200px;
font-size: 18px;
font-family: sans-serif;
margin: 0;
padding: 0;
overflow: hidden;
}
a:link,
a:visited {
color: #dbe2ef;
text-decoration: none;
}
a:hover {
text-decoration: none;
color: white;
}
.header {
position: fixed;
display: flex;
align-items: center;
width: 100%;
height: 90px;
background: #112d4e;
padding: 0;
color: #dbe2ef;
top: 0;
left: 0;
}
.logo-container {
display: flex;
align-items: center;
margin-right: 20px;
}
.logo img {
width: 75px;
height: 75px;
border-radius: 15px;
margin-left: 10px;
margin-top: 5px;
}
.header h1 {
margin: 0 20px;
font-size: 1.5em;
white-space: nowrap;
}
.menu {
display: flex;
align-items: center;
list-style-type: none;
margin-left: auto;
}
.menu > li {
margin-right: 30px;
display: flex;
align-items: center;
}
.menu > li:last-of-type {
margin-right: 0;
}
.dropdown {
position: relative;
}
.dropdown > a {
cursor: pointer;
color: #dbe2ef;
}
.dropdown:hover .features-menu {
display: flex;
}
.features-menu {
display: none;
flex-direction: column;
background: #b2d6ff;
border-radius: 5px;
padding-top: 10px;
position: absolute;
top: 40px;
left: 0;
z-index: 1;
align-items: center;
}
.features-menu li {
border-bottom: 1px solid #fff;
font-size: 0.8em;
width: 100%;
padding: 10px 20px;
text-align: center;
}
.features-menu li:last-of-type {
border-bottom: none;
}
.features-menu a {
color: #112d4e;
}
.numbers{
color: #00264d;
padding-top: 100px;
padding-bottom: 335px;
}
table{
color: #00264d;
width: 60%;
margin: 200px;
margin-left: 20%;
}
th, td {
padding: 15px;
}
.footer {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #00264d;
color: #b2d6ff;
bottom: -10px;
}
.social-container {
display: flex;
align-items: center;
}
.social {
display: flex;
align-items: center;
margin-right: 20px;
}
.social h2, .social h1 {
margin-left: 10px;
}
.contact-info {
text-align: right;
}

81
contacts.html Normal file
View File

@@ -0,0 +1,81 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<title>cyxaruk shop contacts</title>
<link rel="stylesheet" href="contacts.css" />
</head>
<body>
<div class="header">
<a href="main.html" class="logo">
<img src="фотки/cyxaruk shop logo.jpg" alt="сухарик шоп">
</a>
<h1>cyxaruk shop</h1>
<ul class="menu">
<li class="dropdown">
<a href="catalog.html">Catalog ▾</a>
<ul class="features-menu">
<li><a href="#">For Men</a></li>
<li><a href="#">For Women</a></li>
<li><a href="#">For Kids</a></li>
<li><a href="#">Order from abroad</a></li>
</ul>
</li>
<li><a href="contacts.html">Contacts</a></li>
<li><a href="likes.html">Likes</a></li>
<li><a href="basket.html">
<img src="фотки/basket.png" width="50" height="50" alt="корзина">
</a></li>
</ul>
</div>
<table border="3">
<caption>
Контакты(звонить только в поддержку)
</caption>
<thead>
<tr>
<th>ФИО</th>
<th>Должность</th>
<th>Телефон</th>
<th>Телеграмм</th>
</tr>
</thead>
<tbody>
<tr>
<td>Платонов Артемий Михайлович</td>
<td>Администрация/продавец</td>
<td>89876320523</td>
<td>@RBCScyxaruk</td>
</tr>
<tr>
<td>Ауц Евгений Валерьевич</td>
<td>Продавец/поддержка круглосуточная</td>
<td>89021263060</td>
<td>@yevgenauts</td>
</tr>
</tbody>
</table>
<div class="footer">
<div class="social-container">
<div class="social">
<a href="https://t.me/cyxarukShop">
<img src="фотки/telega.png" width="100" height="100" alt="Telegram">
</a>
<h2>← also follow us on tg</h2>
</div>
<div class="social">
<a href="https://www.avito.ru/brands/6f43f8798e9eb61c3350f391762e98b3/all/odezhda_obuv_aksessuary?gdlkerfdnwq=101&page_from=from_item_card&iid=3935618105&sellerId=81d843720716be16ce230bba484bce75">
<img src="фотки/avito.png" width="80" height="80" alt="Avito">
</a>
<h1>← and avito</h1>
</div>
</div>
<div class="contact-info">
<h2>89876320523</h2>
<h2>Ulyanovsk, Russia</h2>
</div>
</div>
</body>
</html>

151
likes.css Normal file
View File

@@ -0,0 +1,151 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 1200px;
font-size: 18px;
font-family: sans-serif;
margin: 0;
padding: 0;
overflow: hidden;
}
a:link,
a:visited {
color: #dbe2ef;
text-decoration: none;
}
a:hover {
text-decoration: none;
color: white;
}
.header {
position: fixed;
display: flex;
align-items: center;
width: 100%;
height: 90px;
background: #112d4e;
padding: 0;
color: #dbe2ef;
top: 0;
left: 0;
}
.logo-container {
display: flex;
align-items: center;
margin-right: 20px;
}
.logo img {
width: 75px;
height: 75px;
border-radius: 15px;
margin-left: 10px;
margin-top: 5px;
}
.header h1 {
margin: 0 20px;
font-size: 1.5em;
white-space: nowrap;
}
.menu {
display: flex;
align-items: center;
list-style-type: none;
margin-left: auto;
}
.menu > li {
margin-right: 30px;
display: flex;
align-items: center;
}
.menu > li:last-of-type {
margin-right: 0;
}
.dropdown {
position: relative;
}
.dropdown > a {
cursor: pointer;
color: #dbe2ef;
}
.dropdown:hover .features-menu {
display: flex;
}
.features-menu {
display: none;
flex-direction: column;
background: #b2d6ff;
border-radius: 5px;
padding-top: 10px;
position: absolute;
top: 40px;
left: 0;
z-index: 1;
align-items: center;
}
.features-menu li {
border-bottom: 1px solid #fff;
font-size: 0.8em;
width: 100%;
padding: 10px 20px;
text-align: center;
}
.features-menu li:last-of-type {
border-bottom: none;
}
.features-menu a {
color: #112d4e;
}
.sad{
padding-top: 150px;
color: #00264d;
text-align: center;
padding-bottom: 100px;
}
.footer {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #00264d;
color: #b2d6ff;
}
.social-container {
display: flex;
align-items: center;
}
.social {
display: flex;
align-items: center;
margin-right: 20px;
}
.social h2, .social h1 {
margin-left: 10px;
}
.contact-info {
text-align: right;
}

58
likes.html Normal file
View File

@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<title>cyxaruk shop catalog</title>
<link rel="stylesheet" href="basket.css" />
</head>
<body>
<div class="header">
<a href="main.html" class="logo">
<img src="фотки/cyxaruk shop logo.jpg" alt="сухарик шоп">
</a>
<h1>cyxaruk shop</h1>
<ul class="menu">
<li class="dropdown">
<a href="catalog.html">Catalog ▾</a>
<ul class="features-menu">
<li><a href="#">For Men</a></li>
<li><a href="#">For Women</a></li>
<li><a href="#">For Kids</a></li>
<li><a href="#">Order from abroad</a></li>
</ul>
</li>
<li><a href="contacts.html">Contacts</a></li>
<li><a href="user.html">User</a></li>
<li><a href="basket.html">
<img src="фотки/basket.png" width="50" height="50" alt="корзина">
</a></li>
</ul>
</div>
<div class="sad">
<h1>Здесь будут лежать товары, которые тебе понравились, <br/> а пока здесь так пусто...</h1>
<img src="фотки/sad2.jpeg" width="500" height="300">
</div>
<div class="footer">
<div class="social-container">
<div class="social">
<a href="https://t.me/cyxarukShop">
<img src="фотки/telega.png" width="100" height="100" alt="Telegram">
</a>
<h2>← also follow us on tg</h2>
</div>
<div class="social">
<a href="https://www.avito.ru/brands/6f43f8798e9eb61c3350f391762e98b3/all/odezhda_obuv_aksessuary?gdlkerfdnwq=101&page_from=from_item_card&iid=3935618105&sellerId=81d843720716be16ce230bba484bce75">
<img src="фотки/avito.png" width="80" height="80" alt="Avito">
</a>
<h1>← and avito</h1>
</div>
</div>
<div class="contact-info">
<h2>89876320523</h2>
<h2>Ulyanovsk, Russia</h2>
</div>
</div>
</body>
</html>

245
main.css Normal file
View File

@@ -0,0 +1,245 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 1200px;
font-size: 18px;
font-family: sans-serif;
margin: 0;
padding: 0;
}
a:link,
a:visited {
color: #dbe2ef;
text-decoration: none;
}
a:hover {
text-decoration: none;
color: white;
}
.header {
position: fixed;
display: flex;
align-items: center;
width: 100%;
height: 90px;
background: #112d4e;
padding: 0;
color: #dbe2ef;
top: 0;
left: 0;
}
.logo-container {
display: flex;
align-items: center;
margin-right: 20px;
}
.logo img {
width: 75px;
height: 75px;
border-radius: 15px;
margin-left: 10px;
margin-top: 5px;
}
.header h1 {
margin: 0 20px;
font-size: 1.5em;
white-space: nowrap;
}
.menu {
display: flex;
align-items: center;
list-style-type: none;
margin-left: auto;
}
.menu > li {
margin-right: 30px;
display: flex;
align-items: center;
}
.menu > li:last-of-type {
margin-right: 0;
}
.dropdown {
position: relative;
}
.dropdown > a {
cursor: pointer;
color: #dbe2ef;
}
.dropdown:hover .features-menu {
display: flex;
}
.features-menu {
display: none;
flex-direction: column;
background: #b2d6ff;
border-radius: 5px;
padding-top: 10px;
position: absolute;
top: 40px;
left: 0;
z-index: 1;
align-items: center;
}
.features-menu li {
border-bottom: 1px solid #fff;
font-size: 0.8em;
width: 100%;
padding: 10px 20px;
text-align: center;
}
.features-menu li:last-of-type {
border-bottom: none;
}
.features-menu a {
color: #112d4e;
}
.promo-section {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px;
background-color: #f9f9f9;
border: 1px solid #ddd;
margin: 90px 20px 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.image-container {
flex: 1;
}
.image-container img {
width: 100%;
height: auto;
border-radius: 8px;
}
.text-container {
flex: 1;
padding: 20px;
text-align: center;
color: #00264d;
}
.text-container h2 {
font-size: 4em;
color: #003366;
margin-bottom: 20px;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #003366;
color: #fff;
text-decoration: none;
border-radius: 4px;
font-size: 1em;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #00264d;
}
.page {
display: flex;
flex-wrap: wrap;
padding-bottom: 50px;
}
.section {
width: 736px;
height: 500px;
display:flex;
justify-content: center;
align-items: center;
}
.feedback {
overflow: hidden;
color: #00264d;
padding-bottom: 50px;
}
.feedback h1{
text-align: center;
}
.column {
float: left;
width: 31%;
margin: 20px 1.15%;
height: 160px;
background-color: #b2d6ff;
border-radius: 8px;
}
.avatar {
float: left;
width: 60px;
height: 60px;
margin: 25px;
border-radius: 40px;
background-color: #d6e9fe;
}
.username {
margin-top: 30px;
}
.comment {
margin: 10px;
overflow: hidden;
}
.footer {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #00264d;
color: #b2d6ff;
}
.social-container {
display: flex;
align-items: center;
}
.social {
display: flex;
align-items: center;
margin-right: 20px;
}
.social h2, .social h1 {
margin-left: 10px;
}
.contact-info {
text-align: right;
}

122
main.html Normal file
View File

@@ -0,0 +1,122 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<title>cyxaruk shop</title>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div class="header">
<a href="main.html" class="logo">
<img src="фотки/cyxaruk shop logo.jpg" alt="сухарик шоп">
</a>
<h1>cyxaruk shop</h1>
<ul class="menu">
<li class="dropdown">
<a href="catalog.html">Catalog ▾</a>
<ul class="features-menu">
<li><a href="#">For Men</a></li>
<li><a href="#">For Women</a></li>
<li><a href="#">For Kids</a></li>
<li><a href="#">Order from abroad</a></li>
</ul>
</li>
<li><a href="contacts.html">Contacts</a></li>
<li><a href="likes.html">Likes</a></li>
<li><a href="basket.html">
<img src="фотки/basket.png" width="50" height="50" alt="корзина">
</a></li>
</ul>
</div>
<div class="promo-section">
<div class="image-container">
<img src="фотки/шмотки2.jpg" alt="Шмотки">
</div>
<div class="text-container">
<h2> <em>Official cyxaruk shop website</em> </h2>
<a href="catalog.html" class="button"> Go shopping </a>
</div>
</div>
<div class="text-container">
<h1>ONLY THE FATTEST STUFF</h1>
</div>
<div class="page">
<div class="section">
<img src="фотки/шмотки.jpg" width="736" height="500">
</div>
<div class="section">
<img src="фотки/шмотки3.jpg" width="735" height="500">
</div>
</div>
<div class="feedback">
<h1><em>Отзывы</em></h1>
<div class="column">
<div class="avatar"></div>
<h3 class="username">Pistoletov Sasha</h3>
<p class="comment">
стон 1200 рублей и расход, го можно пж?
</p>
</div>
<div class="column">
<div class="avatar"></div>
<h3 class="username">AUC EVGEN</h3>
<p class="comment">
Сотрудничаем уже 7 лет, мужик хороший, надежный, цена для размещения вещей адекватная, все четко
</p>
</div>
<div class="column">
<div class="avatar"></div>
<h3 class="username">Vupava Kitalya</h3>
<p class="comment">
Продавец ответственно подходит к своему делу, просил найти его бренд Napapisaj, очень редкая штука, но он справился, 10/10
</p>
</div>
<div class="column">
<div class="avatar"></div>
<h3 class="username">Anjela Danil</h3>
<p class="comment">
Норм продавец, 9/10, пук пук
</p>
</div>
<div class="column">
<div class="avatar"></div>
<h3 class="username">Hater228</h3>
<p class="comment">
Как от ****** отойдешь, цену поменяй, клоун
</p>
</div>
<div class="column">
<div class="avatar"></div>
<h3 class="username">Bima Daryshev</h3>
<p class="comment">
При покупке не возникло никаких проблем, предоставляет огромное кол-во скидок, обязательно еще что нибудь у него закажу
</p>
</div>
</div>
<div class="footer">
<div class="social-container">
<div class="social">
<a href="https://t.me/cyxarukShop">
<img src="фотки/telega.png" width="100" height="100" alt="Telegram">
</a>
<h2>← also follow us on tg</h2>
</div>
<div class="social">
<a href="https://www.avito.ru/brands/...">
<img src="фотки/avito.png" width="80" height="80" alt="Avito">
</a>
<h1>← and avito</h1>
</div>
</div>
<div class="contact-info">
<h2>89876320523</h2>
<h2>Ulyanovsk, Russia</h2>
</div>
</div>
</body>
</html>

BIN
фотки/adidas.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 KiB

BIN
фотки/avito.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

BIN
фотки/basket.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

BIN
фотки/fred perry.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 259 KiB

BIN
фотки/lacoste.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

BIN
фотки/napapisaj.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 260 KiB

BIN
фотки/sad1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
фотки/sad2.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 131 KiB

BIN
фотки/samba.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

BIN
фотки/stonik.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 313 KiB

BIN
фотки/telega.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
фотки/шмотки.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 205 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 KiB