forked from seagullua/JS-BuyList
-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (41 loc) · 1.5 KB
/
index.html
File metadata and controls
44 lines (41 loc) · 1.5 KB
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
<!DOCTYPE html>
<html lang="uk">
<head>
<title>Homework 2</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<script src="script.js" defer></script>
</head>
<body>
<div class="shopping-cart-container">
<section class="product-management">
<div class="product-search">
<input type="text" id="product-search-input" name="search-product" placeholder="Назва товару" />
<button type="button" id="product-add-button" data-tooltip="Додати продукт">Додати</button>
</div>
<div class="product-list-main">
</div>
</section>
<section class="summary-lists">
<section class="unbought-products">
<span class="summary-title">Залишилося</span>
<div class="unbought-product-list">
</div>
</section>
<section class="purchased-products">
<span class="summary-title">Куплено</span>
<div class="purchased-product-list">
</div>
</section>
</section>
</div>
<section class="badge">
<span class="badge-title">Buy List</span>
<div class="creator-info">
<span class="creator-label">Created by:</span>
<span class="creator-name">Maryna Samsoniuk</span>
</div>
</section>
</body>
</html>