-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#0970c8" />
<title>NoteIT</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@600;700;800;900&display=swap"
rel="stylesheet"
/>
<link
rel="icon"
href="https://res.cloudinary.com/rdaahal/image/upload/v1617460505/noteit/icons/noteit-96x96_xvnvdt.png"
type="image/png"
/>
<link rel="manifest" href="/manifest.json" />
<noscript>
<h3>This app requires JavaScript to function.</h3>
<a href="https://www.enable-javascript.com/">Read More</a>
</noscript>
</head>
<body>
<div id="modal"></div>
<div id="app"></div>
<!-- <script>
if ("serviceWorker" in navigator) {
window.addEventListener("load", () => {
navigator.serviceWorker
.register("/service-worker.js")
.then((reg) => console.log("registered", reg.scope))
.catch((err) => console.log(err));
});
}
</script> -->
<script type="module" src="/src/main.jsx"></script>
</body>
</html>