-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (55 loc) · 1.78 KB
/
index.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="shortcut icon" href="./assets/logo.png" type="image/x-icon">
<title>Деливери Краб</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./index.css" />
<script src="./index.js" defer></script>
</head>
<body>
<header class="header">
<div class="header-container">
<div class="logo-container">
<img class="logo" src="assets/logo.png">
<span>
Деливери Краб
</span>
</div>
<div class="search-container">
<input class="search-input" type="search" placeholder="Поиск">
<button class="search-button">
<img src="assets/search.png">
</button>
</div>
<div class="cart-container">
<button class="cart-button">
<img src="assets/cart.png">
</button>
</div>
</div>
</header>
<!-- Товары -->
<main class="main-container">
<section class="food-container">
<!-- Здесь будут карточки товаров -->
</section>
<!-- Корзина -->
<section class="sidebar hidden">
<h3>Здесь будет ваш заказ:</h3>
<h4>Название - цена</h4>
<ol class="sidebar-list">
<!-- Сюда выводи заказ -->
</ol>
<div class="sidebar-total">
<!-- Сюда выводи Итого -->
Итого: 0
</div>
<button class="order-button">Заказать</button>
</section>
</main>
</body>
</html>