-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 1.46 KB
/
Copy pathindex.html
File metadata and controls
35 lines (34 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Add to Cart</title>
<link rel="apple-touch-icon" sizes="180x180" href="/public/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/public/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/public/favicon-16x16.png" />
<link rel="manifest" href="/public/site.webmanifest" />
<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=Fredoka:wght@300..700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/index.css" />
</head>
<body>
<div class="container">
<div class="user-info">
<img id="user-profile-pic" src="" alt="User Profile Picture" style="width: 50px; height: 50px; border-radius: 50%;">
<p id="user-name"></p>
<button id="sign-out-button">Sign Out</button>
</div>
<!-- <img src="../../public/Assets/imag.gif" /> -->
<input type="text" id="input-field" placeholder="Add Tasks and Goals" />
<input type="date" id="deadline-field" />
<button id="add-button">Add to cart</button>
<ul id="shopping-list"></ul>
</div>
<script src="/index.js" type="module"></script>
</body>
</html>