generated from dev-protocol/template-repos-ts
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
46 lines (44 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Govern</title>
<style type="text/css">
body {
background: #333;
transition-property: background;
transition-duration: 0.3s;
}
@font-face {
font-family: 'Whyte';
src: url('https://devstaticasset.azureedge.net/font/ABCWhyte-Regular.woff2')
format('woff2');
font-style: normal;
font-weight: 400;
font-display: swap;
}
@font-face {
font-family: 'WhyteInktrap';
src: url('https://devstaticasset.azureedge.net/font/ABCWhyteInktrap-Bold.woff2')
format('woff2');
font-style: bold;
font-weight: 900;
font-display: swap;
}
@font-face {
font-family: 'WhyteInktrap';
src: url('https://devstaticasset.azureedge.net/font/ABCWhyteInktrap-Regular.woff2')
format('woff2');
font-style: normal;
font-weight: 400;
font-display: swap;
}
</style>
<style id="style_app"></style>
</head>
<body>
<script type="module" src="./src/app.ts"></script>
<div id="app"></div>
</body>
</html>