-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (36 loc) · 1.29 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shopping list</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat&family=Numans&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<main>
<img src="img/bag.png" alt="shopping bag" id="shopping-bag-img"/>
<form>
<input id="input-item" type="text" placeholder="Type the item you want to add"/>
<button id="add-button">Add item</button>
</form>
<div class="container-list">
<h2>Shopping list</h2>
<hr/>
<ul id="shopping-list">
<p id="message-empty-list" style="display: block">Your list is empty. Add items so you don't forget anything on your next purchase!</p>
</ul>
<div id="container-bought" style="display: none">
<h2 id="h2-bought">Bought</h2>
<hr/>
<ul id="bought-items-list">
</ul>
</div>
</div>
</main>
<script src="script.js" type="module"></script>
</body>
</html>