-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (39 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preload" href="/css/normalize.css" as="style" />
<link rel="preload" href="/css/site.css" as="style" />
<link rel="modulepreload" href="/js/site.js" />
<link rel="icon" href="/assets/favicon.svg" />
<link
rel="mask-icon"
href="/assets/favicon-masked.svg"
color="#f7f7f7"
/>
<link rel="apple-touch-icon" href="/assets/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.json" />
<link rel="stylesheet" href="/css/normalize.css" />
<link rel="stylesheet" href="/css/site.css" />
<script src="/js/site.js" defer type="module"></script>
<meta name="theme-color" content="#f7f7f7" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="dark light" />
<title>mans.computer</title>
</head>
<body>
<div class="grid">
<header class="content"></header>
<nav class="content"></nav>
<main class="content flow">
<h1>Hello</h1>
<p>
I am a developer from Stockholm, Sweden. This site is my
playground for experiments in web technology. The results of
some of those experiments can be found in the
<a href="/">blog</a>.
</p>
</main>
</div>
</body>
</html>