-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (31 loc) · 988 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Website</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="My Website" />
<meta charset="utf-8" />
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon.png" />
<link rel="preconnect" href="https://cdn.skypack.dev" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="preload" href="/assets/me.jpg" as="image" />
<link
href="https://fonts.googleapis.com/css2?family=Bitter:wght@400;700&family=Space+Mono&display=swap"
rel="stylesheet"
/>
<style nonce="eiBbNWphUFVPXWVBJjYnJC4uflhI">
html,
body {
background-color: black;
margin: 0;
width: 100%;
min-height: 100%;
height: 100%;
}
</style>
</head>
<body>
<website-app></website-app>
<script src="/src/website-app.js" type="module"></script>
</body>
</html>