diff options
author | nathansmith117 <nathansmith117@sdf.org> | 2024-05-19 01:42:02 -0600 |
---|---|---|
committer | nathansmith117 <nathansmith117@sdf.org> | 2024-05-19 01:42:02 -0600 |
commit | ea5d1266abf8d91e030c0a278d4d91b29404e910 (patch) | |
tree | 31b0953c777f3b459ecfe7c465e5e23d7271311f /index.html |
first commit
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..a8770e0 --- /dev/null +++ b/index.html @@ -0,0 +1,73 @@ +<html> + +<head> + <title>Nathan Smith's website</title> + +<style> + +body { + color: black; + background-image: url('images/background.png'); +} + +table { + color: black; + background-color: #bebebe; + margin-top: 10px; + margin-bottom: 10px; + margin-left: 10px; + margin-right: 10px; +} + +</style> + +</head> + +<body> + <center> + <h1>All the cursed shit I decided to add because why not</h1> + + <table border="1" width="50%"> + <tr> + <td> + <h2>Version control</h2> + <ul> + <li><a href="https://github.com/nathansmith117" target="_blank">github</a></li> + <li><a href="https://gitea.com/nathansmithsmith" target="_blank">gitea</a></li> + </ul> + </td> + </tr> + <tr> + <td> + <h2>Software I made</h2> + <p>(Things that stood out to me at 0:00 when making things)</p> + <ul> + <li><a href="https://gitea.com/nathansmithsmith/youload/releases" target="_blank">youload</a></li> + <li><a href="https://gitea.com/nathansmithsmith/nvim_config" target="_blank">nvim_config</a></li> + <li><a href="https://github.com/nathansmith117/twine" target="_blank">the holy thing you need</a></li> + <li><a href="https://github.com/nathansmith117/HelpfullDuck" target="_blank">duck</a></li> + <li><a href="https://github.com/nathansmith117/RaccoonConvert" target="_blank">raccoon</a></li> + <li><a href="https://github.com/nathansmith117/SandGame" target="_blank">sand</a></li> + </ul> + </td> + </tr> + <tr> + <td> + + <h2>WASM games</h2> + <p>(One looks like a tech demo and the other is just fuck)</p> + <ul> + <li><a href="https://nathansmithsmith.itch.io/killafacsista" target="_blank">Tech demo</a></li> + <li><a href="https://nathansmith117.github.io/PenguinYippiesWeb/" target="_blank">FUCK</a></li> + </ul> + </td> + </tr> + <tr> + <td> + <h2><a href="graveyard.html">Visit the graveyard</a></h2> + </td> + </tr> + </table> + </center> +</body> +</html> |