-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (35 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<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>Shopping List</title>
<link href="cart.png" rel="icon" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="container">
<h1>Shopping List</h1>
<p id="first">Don't forget anything !!</p>
<div id="inputBox">
<input id="userInput" type="text" placeholder="Enter item" />
<button id="enter">Add to list</button>
</div>
<ul id="toDoList"></ul>
<p id="tooltip">
<i class="fas fa-lightbulb"></i>You can click on a item to cross it !!
</p>
<div id="buttonsBottom">
<button id="delete">Delete this list</button>
<button id="print">Print this list</button>
</div>
<div id="footer">Made by Tellu - with Love - from Paris</div>
</div>
<script src="script.js"></script>
<script
src="https://kit.fontawesome.com/88c01b38d8.js"
crossorigin="anonymous"
></script>
</body>
</html>