index.html
HTML document, Unicode text, UTF-8 text
1
<!DOCTYPE html>
2
<html lang="en">
3
4
<head>
5
<meta charset="UTF-8">
6
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7
<title>Steve0Greatness</title>
8
<style>
9
.breadcrumbs {
10
display: flex;
11
list-style-type: none;
12
padding: 0;
13
}
14
.breadcrumbs li:not(:first-child)::before {
15
display: inline-block;
16
content: "»";
17
margin: 0 8px;
18
}
19
20
.direct-link {
21
text-decoration: none;
22
font-size: 12px;
23
}
24
</style>
25
</head>
26
27
<body>
28
<h1>Steve0Greatness' Website</h1>
29
<img src="ProfilePictureSpin.gif" width="50" alt="3D rotating cube of the cat from Stray">
30
<i>Made with <a href="https://www.3dgifmaker.com">3D Gif Maker</a></i>
31
<h2>Blog Posts</h2>
32
<table>
33
<thead>
34
<tr><th>Name</th><th>Date</th></tr>
35
</thead>
36
<tbody>
37
<tr><th><a href="/blog/How-to-Store-Passwords.htm">How to Store Passwords</a></th><td><date>2 Nov, 2023</date></td></tr>
38
</tbody>
39
</table>
40
<footer><a rel="me" href="https://mastodon.social/@S0G">Mastodon</a></footer>
41
</body>
42
43
</html>