diff options
| -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; +}  | 
