diff options
author | Malfurious <m@lfurio.us> | 2020-07-03 05:48:59 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2020-07-03 05:48:59 -0400 |
commit | 3163902fdf60ffb8a27f5d96594cde7712535f0c (patch) | |
tree | 4e30150da4097ba1f3ead2b2f0dbcd4d0df0865c /www | |
parent | f06c24c9fd8e8311be110a627646e93ae7f3b918 (diff) | |
download | site-3163902fdf60ffb8a27f5d96594cde7712535f0c.tar.gz site-3163902fdf60ffb8a27f5d96594cde7712535f0c.zip |
Add placeholder homepage
Diffstat (limited to 'www')
-rw-r--r-- | www/index.html | 15 | ||||
-rw-r--r-- | www/style.css | 16 |
2 files changed, 31 insertions, 0 deletions
diff --git a/www/index.html b/www/index.html new file mode 100644 index 0000000..700590c --- /dev/null +++ b/www/index.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> + +<html> + <head> + <title>malfurious web</title> + <link type="text/css" rel="stylesheet" href="style.css" /> + <!-- flag{c0ngr47ul47i0n5_y0u_d1d_i7!} --> + </head> + + <body> + <img src="bird-boomer-repent-zoomer.png" alt="repent" /> + <h1>/* TODO: finish website */</h1> + <h3><a href="/git">Click through to git repositories</a></h3> + </body> +</html> diff --git a/www/style.css b/www/style.css new file mode 100644 index 0000000..2354e77 --- /dev/null +++ b/www/style.css @@ -0,0 +1,16 @@ +body +{ + text-align: center; + color: #ccc; + background-color: #000; +} + +a +{ + color: #777; +} + +a:hover +{ + color: #999; +} |