-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (53 loc) · 1.33 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
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html
lang="en"
translate="no"
>
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/pineapple.svg"
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
name="description"
content="TC Unified notes is the web application in which we can find all the notes."
/>
<title>
%APP_TITLE%
</title>
<link href="https://api.fontshare.com/v2/css?f[]=nunito@300,700,400&f[]=bebas-neue@400&display=swap" rel="stylesheet">
<style>
html, body {
margin: 0;
padding: 0;
}
body {
font-family: "nunito", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}
@media screen {
body {
background-color: #F5FAFF;
}
}
</style>
</head>
<body>
<noscript>
%APP_TITLE% needs JS.
</noscript>
<div id="webapp-root" />
<script
type="module"
src="/src/index.tsx"
></script>
</body>
</html>