-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
47 lines (46 loc) · 2.06 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nick Wilder</title>
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500;1,600&family=Kotta+One&family=Lilita+One&display=swap"
rel="stylesheet"
/>
<link rel="icon" type="image/x-icon" href="favicon/favicon.ico" />
</head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-130R11B1E9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-130R11B1E9");
</script>
<body>
<div class="container">
<div class="hero">Nick Wilder</div>
<div class="howdy">Howdy! 🤠</div>
<div class="content">
I’m Nick, software engineer by day, tinkering by night. Currently a software engineer working with
<span class="lang">React</span> and <span class="lang">C#</span>, with a bit of experience in many other tech
stacks and frameworks.
</div>
<div class="content">Always learning something new and trying out new technologies I find interesting.</div>
<div class="footer">
<div class="links">
<div class="linkTitle">Links</div>
<a class="link" href="/blog.html"><span class="blo">Blo</span><span class="g">g</span></a>
<a class="link github" href="https://github.com/NickTheWilder">GitHub</a>
<a class="link" href="https://open.spotify.com/user/12166567543?si=5bf12dc3c6394190"
><span class="s">S</span>p<span class="otif">otif</span><span class="y">y</span></a
>
<a class="link linkedIn" href="https://www.linkedin.com/in/nick-wilder/">LinkedIn</a>
</div>
</div>
</div>
</body>
</html>