-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<meta name="Description" content="Put your description here." />
<base href="/" />
<link rel="preconnect" href="https://rsms.me/" />
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico" />
<style>
html,
body {
margin: 0;
padding: 0;
font-family: 'Inter', sans-serif;
background-color: #1a202c;
color: white;
}
@supports (font-variation-settings: normal) {
body {
font-family: 'Inter var', sans-serif;
}
}
</style>
<title>RobinTTY</title>
</head>
<body>
<personal-website></personal-website>
<script
type="module"
src="./out-tsc/components/personal-website.js"
></script>
</body>
</html>