-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.01 KB
/
Copy pathindex.html
File metadata and controls
37 lines (34 loc) · 1.01 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
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="/" />
<!-- <base href="/lets-todo-app/" /> -->
<link rel="stylesheet" href="/src/styles/main.css" />
<link rel="stylesheet" href="/assets/styles/comic.css" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/web-app/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="96x96"
href="/assets/web-app/favicon-96x96.png"
/>
<link rel="manifest" href="/assets/web-app/manifest.json?v=4" />
<title>Let's Todo</title>
</head>
<body>
<main class="main-content" id="mainContent"></main>
<div id="loadingOverlay" class="loading-overlay hidden">
<div class="loading-spinner"></div>
<p>Loading...</p>
</div>
<div id="toastContainer" class="toast-container"></div>
<script type="module" src="/src/app.js"></script>
</body>
</html>