-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoffers.html
36 lines (34 loc) · 1.22 KB
/
offers.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elite Shop</title>
<link rel="icon" href="images/icon.svg">
<link rel = "stylesheet" href = " https://unpkg.com/simplebar@latest/dist/simplebar.css"/>
<link rel="stylesheet" href="fonts/fonts.css">
<link rel="stylesheet" href="css/blocks.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main>
<div class="es-container">
<div class="es-breadcrumbs">
<a href="index.html">Главная</a> /
<span>Акции</span>
</div>
<section class="es-offers">
<h1 class="es-title--h1">Акции</h1>
<ul class="es-offers__list es-grid-container--offers">
</ul>
</section>
</div>
</main>
<script src = " https://unpkg.com/simplebar@latest/dist/simplebar.min.js " ></script>
<script src="js/modal.js"></script>
<script src="js/header.js"></script>
<script src="js/footer.js"></script>
<script src="js/script.js"></script>
</body>
</html>