-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (45 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<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=Poppins:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/remixicon@4.3.0/fonts/remixicon.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
<!-- social links for refinedguides.com -->
<script
src="https://refinedguides.com/assets/social.js?linkColor=%239acd32&textColor=%32333"
defer
></script>
</head>
<body>
<div class="container">
<h1>Shopping List</h1>
<form class="shopping-form">
<input type="text" id="item" placeholder="Enter item name" />
<button type="submit">+</button>
</form>
<div class="shopping-notice">There are no items.</div>
<div class="shopping-filter">
<button data-filter="all" class="active">All</button>
<button data-filter="incomplete">Incomplete</button>
<button data-filter="completed">Completed</button>
</div>
<ul class="shopping-list"></ul>
<div class="shopping-action">
<button data-clear="all">Clear All</button>
<button data-clear="completed">Clear Completed</button>
</div>
</div>
</body>
</html>