-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
43 lines (40 loc) · 1.1 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="viewport"
content="width=device-width, initial-scale=1"
/>
<meta name="theme-color" content="#000000" />
<link rel="icon" type="image/png" href="/favicon.png" />
<style>
@font-face {
font-family: 'Crimson Pro';
font-style: italic;
font-weight: 200 900;
font-display: fallback;
src: url('/fonts/crimson-pro-italic.woff2') format('woff2');
}
@font-face {
font-family: 'Crimson Pro';
font-style: normal;
font-weight: 200 900;
font-display: fallback;
src: url('/fonts/crimson-pro.woff2') format('woff2');
}
@font-face {
font-family: 'Chomsky';
font-style: normal;
font-weight: 700;
font-display: block;
src: url('/fonts/chomsky.woff2') format('woff2');
}
</style>
<title>The New Grid Times — CSS for JavaScript Developers</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>