diff options
author | FivePixels <o5pxels@gmail.com> | 2020-06-26 16:08:35 -0500 |
---|---|---|
committer | FivePixels <o5pxels@gmail.com> | 2020-06-26 16:08:35 -0500 |
commit | 931112d08abdb0a96302de7cbe8d65448d9b39a8 (patch) | |
tree | a04d593d96aae005d5cb7826857f52a6120e96d5 | |
parent | 3afeaa0eb9c0d78e5ff55f1085b179e9a439184f (diff) | |
download | personal-website-931112d08abdb0a96302de7cbe8d65448d9b39a8.tar.xz personal-website-931112d08abdb0a96302de7cbe8d65448d9b39a8.zip |
add support page
-rw-r--r-- | assets/css/main.css | 5 | ||||
-rw-r--r-- | support.html | 21 |
2 files changed, 21 insertions, 5 deletions
diff --git a/assets/css/main.css b/assets/css/main.css index 3c3b5c2..d246fde 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -39,11 +39,6 @@ section { line-height: 20px; } -section#abstract { - float:right; - padding-right: 40%; -} - header { padding-top: 100px; padding-left: 125px; diff --git a/support.html b/support.html new file mode 100644 index 0000000..efa6735 --- /dev/null +++ b/support.html @@ -0,0 +1,21 @@ +<!DOCTYPE HTML> +<html> + <head> + <title>Support</title> + <meta charset="utf-8" /> + <link rel="stylesheet" href="assets/css/main.css" /> + <noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript> + </head> + <header> + <p><a href="index.html">< Back</a></p> + <h1>Support</h1> + </header> + <section id="discord"> + <h2>Discord</h2> + <p><a href="https://discord.gg/Vg2EYDR">Discord Server</a></p> + </section> + <section id="twitter"> + <h2>Twitter</h2> + <p><a href="https://twitter.com/o5pxels">@o5pxels</a></p> + </section> +</html> |