-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (73 loc) · 2.05 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html
lang="en"
translate="no"
>
<head>
<meta charset="UTF-8" />
<link
rel="icon"
href="/favicon.ico"
sizes="48x48"
>
<link
rel="icon"
href="/icon.svg"
sizes="any"
type="image/svg+xml"
>
<link
rel="apple-touch-icon"
href="/apple-touch-icon.png"
>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
name="description"
content="IFRC Alert Hub provides global emergency alerts, empowering communities to protect lives and livelihoods."
/>
<title>
%APP_TITLE%
</title>
<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=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
html, body {
margin: 0;
padding: 0;
}
body {
font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
@media screen {
body {
background-color: #f7f7f7;
}
}
#webapp-preload {
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<noscript>
%APP_TITLE% needs JS.
</noscript>
<div id="webapp-root">
<div id="webapp-preload">
%APP_TITLE% loading...
</div>
</div>
<script
type="module"
src="/src/index.tsx"
></script>
</body>
</html>