-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (28 loc) · 1.3 KB
/
index.html
File metadata and controls
33 lines (28 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ShopEase</title>
<link rel="icon" type="image/x-icon" sizes="32x32" href="/assets/going-shopping-pembe.png">
<link rel="icon" type="image/x-icon" sizes="16x16" href="/assets/going-shopping-pembe.ico">
<link rel="manifest" href="/site.webmanifest">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Rubik:wght@300;400;500&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" type="text/css" href="/css/index.css
">
</head>
<body>
<div class="container">
<img src="assets/doing-groceries-pembe.png" alt="cart">
<input type="text" id="input-field" placeholder="Enter product name">
<!-- <i id="clear-btn" class="fas fa-close"></i> -->
<button id="add-btn">Add to cart</button>
<ul id="shopping-list"></ul>
<!-- <button id="clear-btn">Clear Shopping List</button> -->
</div>
<script src="/js/index.js" type="module"></script>
</body>
</html>