diff options
author | June McEnroe <june@causal.agency> | 2019-01-16 15:42:22 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-01-16 15:42:22 -0500 |
commit | 9a27e1fb708e5c31aa7d3dc8a57f07251bc3792a (patch) | |
tree | ca641e2acc9de4cd50d43f56b168a0d9433d30c0 | |
parent | Return false from keydown handler in explore (diff) | |
download | torus-9a27e1fb708e5c31aa7d3dc8a57f07251bc3792a.tar.gz torus-9a27e1fb708e5c31aa7d3dc8a57f07251bc3792a.zip |
Reformat index.html with explore link
Diffstat (limited to '')
-rw-r--r-- | index.html | 51 |
1 files changed, 35 insertions, 16 deletions
diff --git a/index.html b/index.html index ba0a18d..9354bb8 100644 --- a/index.html +++ b/index.html @@ -1,18 +1,37 @@ <!DOCTYPE html> <title>Route 22 to ascii.town</title> -<p> -Hey there, friend. This should get you there. -<p> -<a href="ssh://torus@ascii.town"><code>ssh torus@ascii.town</code></a> -<p> -Try for a high score at 2048. -<p> -<a href="ssh://play@ascii.town"><code>ssh play@ascii.town</code></a> -<p> -Or you can just come and chat. -<p> -<a href="ssh://chat@ascii.town"><code>ssh chat@ascii.town</code></a> -<p> -You can also take a detour and play NetHack. -<p> -<a href="ssh://nethack@ascii.town"><code>ssh nethack@ascii.town</code></a> +<style> + table { margin: auto; } + td { padding: 1em 2ch; } + td:first-child { text-align: right; } +</style> +<table> + <tr> + <td>A collaborative ASCII art project</td> + <td> + <code> + <a href="ssh://torus@ascii.town">ssh torus@ascii.town</a> + # or + <a href="explore.html">explore</a> + </code> + </td> + </tr> + <tr> + <td>A 2048 clone with scoreboard</td> + <td> + <code><a href="ssh://play@ascii.town">ssh play@ascii.town</a></code> + </td> + </tr> + <tr> + <td>A chat room / IRC client</td> + <td> + <code><a href="ssh://chat@ascii.town">ssh chat@ascii.town</a></code> + </td> + </tr> + <tr> + <td>NetHack</td> + <td> + <code><a href="ssh://nethack@ascii.town">ssh nethack@ascii.town</a></code> + </td> + </tr> +</table> |