-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.12 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.12 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>CSCC09 - Programming on the Web</title>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="/favicon.png" />
<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=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/src/styles.css" />
<script>
(function () {
var t = localStorage.getItem("theme");
if (t === "light" || t === "dark") {
document.documentElement.setAttribute("data-theme", t);
}
})();
</script>
</head>
<body>
<app-root></app-root>
<script type="module" src="/src/main.ts"></script>
<script src="https://app.givefeedback.dev/functions/v1/widget-v2?api-key=8246468e-2b08-4cc3-8c27-a94ef265ae9e"></script>
</body>
</html>