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
</nav>
21
</header>
22
23
<main>
24
<h1>Steve0Greatness</h1>
25
<a href="/blog">Blog</a>
26
</main>
27
<footer role="group">
28
<div class="footer-link-list-holder">
29
<span aria-hidden="true" id="footer-label-social-accounts" class="footer-link-list-label">Social Accounts</span>
30
<ol class="footer-link-list" aria-labelledby="footer-label-social-accounts">
31
<li><a href="https://mastodon.social/@S0G" rel="me">Mastodon</a></li>
32
<li><a href="https://youtube.com/@s0g">YouTube</a></li>
33
</ol>
34
</div>
35
</footer>
36
</body>
37
38
</html>