diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | graveyard.html | 62 | ||||
-rw-r--r-- | images/background.png | bin | 0 -> 3593 bytes | |||
-rw-r--r-- | images/graveyard_background.jpg | bin | 0 -> 203384 bytes | |||
-rw-r--r-- | index.html | 73 |
5 files changed, 137 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..910a614 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# nathansmith117Website +The website I made http://nathansmith117.beevomit.org diff --git a/graveyard.html b/graveyard.html new file mode 100644 index 0000000..00e494b --- /dev/null +++ b/graveyard.html @@ -0,0 +1,62 @@ +<html> + +<head> + <title>graveyard</title> + +<style> + +body { + color: white; + background-image: url('images/graveyard_background.jpg'); +} + +table { + color: black; + background-color: #bebebe; + margin-top: 10px; + margin-bottom: 10px; + margin-left: 10px; + margin-right: 10px; +} + +</style> + +</head> + +<body> + + <center> + <h1>Where dead projects are</h1> + <table border="1" width="50%"> + <tr> + <td> + <h2>This place is as big as it is because of adhd</h2> + <ul> + <li><a href="https://github.com/nathansmith117/zombie_friends" target="_blank">WTF was I thinking!!!</a></li> + <li><a href="https://gitea.com/nathansmithsmith/HiIAmAPencil" target="_blank">school shooting</a></li> + <li><a href="https://gitea.com/nathansmithsmith/NorthFurniture" target="_blank">Not ikea</a></li> + <li><a href="https://github.com/nathansmith117/robot_emulator" target="_blank">robot go vroom!</a></li> + <li><a href="https://github.com/nathansmith117/tickoattwo" target="_blank">weird ass tiktacktoe</a></li> + <li><a href="https://github.com/nathansmith117/fltk_snake" target="_blank">Perfectly working snake but never went far</a></li> + <li><a href="https://github.com/nathansmith117/BlockyBuild" target="_blank">Minecraft clone doomed from the start</a></li> + </ul> + <h2>Shit to bring up</h2> + <ul> + <li>Call out to every stupid game idea I ever had</li> + <li>A joystick library in c I think I never uplaoded and deleted</li> + <li>A pygame game that was terrible and only had a single playable level that I deleted by mistake</li> + <li>The countless projects that I deleted because I fucking hated them but now I kind of wish I kept them in a place deep on the internet</li> + <li>Anything I forgor to add the the other list</li> + </ul> + </td> + </tr> + <tr> + <td> + <h2><a href="index.html">Back to main page<a></h2> + </td> + </tr> + </table> + </center> + +</body> +</html> diff --git a/images/background.png b/images/background.png Binary files differnew file mode 100644 index 0000000..5aba13f --- /dev/null +++ b/images/background.png diff --git a/images/graveyard_background.jpg b/images/graveyard_background.jpg Binary files differnew file mode 100644 index 0000000..5adf1a8 --- /dev/null +++ b/images/graveyard_background.jpg 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> |