-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (49 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width initial-scale=1 user-scalable=no"
/>
<title>danharris</title>
<link
href="https://fonts.googleapis.com/css?family=Open+Sans"
rel="stylesheet"
/>
<style>
@font-face {
font-family: "Fira Code";
src: url("./assets/fonts/FiraCode-Light.woff2") format("woff2");
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: "Fira Code";
src: url("./assets/fonts/FiraCode-Regular.woff2") format("woff2");
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: "Fira Code";
src: url("./assets/fonts/FiraCode-Medium.woff2") format("woff2");
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: "Fira Code";
src: url("./assets/fonts/FiraCode-Bold.woff2") format("woff2");
font-weight: 700;
font-style: normal;
}
/* quick hack to put fira code as the prism display font */
pre.prism-code.builtin-prism-theme {
font-family: "Fira Code";
}
</style>
</head>
<body>
<div id="root"></div>
<script src="./dist/bundle.js"></script>
</body>
</html>