This repository has been archived by the owner on Mar 22, 2021. It is now read-only.
forked from HorusGoul/atom-pwa
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
73 lines (73 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0"
/>
<base href="/" target="_top" />
<link rel="manifest" href="/manifest.json" />
<meta name="msapplication-config" content="/browserconfig.xml" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/icons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/icons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/icons/favicon-16x16.png"
/>
<link rel="shortcut icon" href="/favicon.ico" />
<link
rel="mask-icon"
href="/icons/safari-pinned-tab.svg"
color="#193132"
data-react-helmet="true"
/>
<meta
name="msapplication-TileColor"
content="#193132"
data-react-helmet="true"
/>
<meta name="theme-color" content="#193132" data-react-helmet="true" />
<meta name="og:type" content="website" />
<meta
name="og:image"
content="https://atom.horuslugo.com/icons/twitter-image.png"
/>
<meta
name="og:title"
content="Atom - Periodic Table & Tests"
data-react-helmet="true"
/>
<meta
name="og:description"
content="Learn the basics of chemistry doing the tests and using the periodic table"
data-react-helmet="true"
/>
<meta name="twitter:site" content="@HorusGoul" data-react-helmet="true" />
<meta
name="description"
content="Learn the basics of chemistry doing the tests and using the periodic table"
data-react-helmet="true"
/>
<title>Atom - Periodic Table & Tests</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
<script
async
src="https://identity.netlify.com/v1/netlify-identity-widget.js"
></script>
</body>
</html>