-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
64 lines (52 loc) · 2.13 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preload" href="styles.css" as="style" />
<link rel="preload" href="preflight.min.css" as="style" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@100..900&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Alex Guthrie" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gu3.me/" />
<meta property="og:image" content="http://gu3.me" />
<meta property="og:description" content="Programmer from the UK" />
<meta name="description" content="Alex Guthrie is a programmer from the UK." />
<link rel="stylesheet" href="preflight.min.css" />
<link rel="stylesheet" href="styles.css" />
<title>Alex Guthrie</title>
</head>
<body>
<script>
if (navigator.userAgent.indexOf('Mac OS') !== -1) {
document.body.classList.add('mac');
} else {
document.body.classList.add('non-mac');
}
</script>
<nav>
<i class="serif">Alex Guthrie</i>
</nav>
<main>
<section class="intro-container">
<h1 class="serif">
Hi. I'm <i>Alex</i>.
<span class="non-mac wave">
<img src="/public/img/wave.png" alt="Wave" />
</span>
<span class="mac wave">
👋
</span>
</h1>
<p>
I'm a programmer from the UK working at <a href="https://facepunch.com/">Facepunch</a> on s&box. I like reverse engineering, graphics programming, and game development. I'm also pretty enthusiastic about hardware hacking and electronics, and I'm always looking for new projects to work on.
</p>
<p>
Feel free to check out some of my projects on <a href="https://github.com/xezno">GitHub</a>. You can get in touch with me via <a href="mailto:alex@gu3.me">email</a> or <a href="https://twitter.com/realxezno">X (Twitter)</a>.
</p>
</section>
</main>
</body>
</html>