index.html
HTML document, ASCII text
1
<!DOCTYPE html>
2
<html lang="en">
3
4
<head>
5
6
7
<meta charset="UTF-8" />
8
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
9
<title>Homepage - S0G</title>
10
<link rel="stylesheet" href="/src/global.css" />
11
12
13
</head>
14
15
<body>
16
<header>
17
<h2><a href="/">Steve0Greatness</a></h2>
18
<nav>
19
<a href="/blog">Blog</a>
20
<a href="/link-tree.html">Link Tree</a>
21
</nav>
22
</header>
23
24
<main>
25
<h1>Steve0Greatness</h1>
26
<p>Hey there! I'm <i>Steve0Greatness</i>, who's a supposed human being. This site exists primarily for my blog posts(new and old), and to host a large list of links.</p>
27
</main>
28
<footer role="group">
29
<div class="footer-link-list-holder">
30
<span aria-hidden="true" id="footer-label-social-accounts" class="footer-link-list-label">Social Accounts</span>
31
<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts">
32
<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li>
33
<li><a href="https://youtube.com/@s0g">YouTube</a></li>
34
</ol>
35
</div>
36
</footer>
37
</body>
38
39
</html>