diff options
author | Kai Stevenson <kai@kaistevenson.com> | 2022-10-12 07:19:37 -0700 |
---|---|---|
committer | Kai Stevenson <kai@kaistevenson.com> | 2022-10-12 07:19:37 -0700 |
commit | 76d463690d2c196bbc55a5ee6426a6589f769240 (patch) | |
tree | 1be1f9ca71d040f3d6afd071a43f257419666e69 | |
parent | 3e32cf5ecc672d3466c4d666a999732ada25d131 (diff) |
added nullring footer
-rw-r--r-- | about.php | 5 | ||||
-rw-r--r-- | footer.php | 8 | ||||
-rw-r--r-- | style.css | 6 |
3 files changed, 16 insertions, 3 deletions
@@ -4,8 +4,11 @@ require($_SERVER["DOCUMENT_ROOT"] . "/head.php"); require($_SERVER["DOCUMENT_ROOT"] . "/header.php"); ?> <p> - This site is a member of the <a href="https://nullring.xyz">Null Webring</a>. +This site is hosted on a vultr VPS. It serves content through an apache webserver, and has a pretty simple backend. +I use PHP for templating, CSS for styling, and no JavaScript at all. The server supports HTTPS. +If you're curious about anything here, you can email me at kai@kaistevenson.com. </p> +<p>This site is a member of the <a href="https://nullring.xyz">Null Webring</a>.</p> <div style="width: 100%; text-align: center;"> <pre style="display: inline-block; text-align: left;"> ,▄▓▄, @@ -1,2 +1,8 @@ + <br> + <br> + <br> + <div class="footer"> + <h3 class="nav"><a>[Back]</a> | <a href="https://www.nullring.xyz">[Nullring]</a> | <a>[Forward]</a></h3> + </div> </div> -</body>
\ No newline at end of file +</body> @@ -105,4 +105,8 @@ ul { li { color: var(--highlight); -}
\ No newline at end of file +} +.footer { + width: auto; + margin: auto; +} |