-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (43 loc) · 1.01 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="description"
content="Write markdown, get slides."
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Slidesdown</title>
<link
href="https://fonts.googleapis.com/css?display=swap&family=Inconsolata|Rubik:400,400i,700,700i"
rel="stylesheet"
/>
<link
href="/favicon.png"
rel="shortcut icon"
/>
</head>
<body>
<div id="root"></div>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-117384183-1"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'UA-117384183-1')
</script>
<script
type="module"
src="/src/index.tsx"
></script>
<noscript>Your browser does not support JavaScript.</noscript>
</body>
</html>