-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (90 loc) · 3.72 KB
/
index.html
File metadata and controls
102 lines (90 loc) · 3.72 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<title>naff.software</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Jacob Walker">
<meta name="description" content="Jacob writes software and shares some of it online">
<meta property="og:title" content="naff.software">
<meta property="og:description" content="Jacob writes software and shares some of it online">
<meta property="og:image" content="/some-image.png">
<meta property="og:url" content="https://naff.software/index.html">
<meta property="og:site_name" content="naff.software">
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="assets/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="assets/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="assets/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="assets/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="assets/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="assets/favicon-196x196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="assets/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="assets/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="assets/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="assets/favicon-128.png" sizes="128x128" />
<meta name="application-name" content="naff.software"/>
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="assets/mstile-144x144.png" />
<meta name="msapplication-square70x70logo" content="assets/mstile-70x70.png" />
<meta name="msapplication-square150x150logo" content="assets/mstile-150x150.png" />
<meta name="msapplication-wide310x150logo" content="assets/mstile-310x150.png" />
<meta name="msapplication-square310x310logo" content="assets/mstile-310x310.png" />
<link rel="icon" type="image/svg+xml" href="assets/favicon.svg">
<style>
html {
font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
}
main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
min-height: 100vh;
}
article {
text-align: left;
width: 100vw;
max-width: 300px;
}
.social-icon {
width: 1rem;
height: 1rem;
margin-right: 0.5rem;
}
p {
margin-top: 2rem;
}
a {
text-decoration: none;
}
.link-text {
text-decoration: underline;
}
</style>
</head>
<body>
<main>
<article>
<img id="icon" type="image/svg+xml" src="assets/favicon-32x32.png" />
<h1>
Hello
</h1>
<p>I'm Jacob, a software engineer.</p>
<p>Here are the projects I have online:</p>
<ul>
<li><a href="https://vite-react-ts-cricket-scorer.pages.dev/" class="link-text">Cricket Scorer (Vite, React, TS)</a></li>
<li>Oop, that's it for now</li>
</ul>
<p>
<a href="https://github.com/jacobwalkr">
<img class="social-icon" src="assets/github-mark.png" />
<span class="link-text">Here's a link to my GitHub.</span>
</a>
</p>
</article>
</main>
</body>
</html>