diff options
author | Stephen Enders <senders@spotify.com> | 2019-01-21 13:58:14 -0500 |
---|---|---|
committer | Stephen Enders <senders@spotify.com> | 2019-01-21 13:58:14 -0500 |
commit | f8bc07f42f3866d32c777c0f3b6300fd99a4e2e2 (patch) | |
tree | 31ccaf9d0e5bb607e99411e5ceed60df98839d25 /www/index.html | |
parent | ca52caeb2a768ba2f8847097c669b66f0e7bc214 (diff) |
Added www and index files
Diffstat (limited to 'www/index.html')
-rw-r--r-- | www/index.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/www/index.html b/www/index.html new file mode 100644 index 0000000..3c9b9d4 --- /dev/null +++ b/www/index.html @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html> + <head> + <title>senders.io - Homepage</title> + <link rel='stylesheet' type='text/css' href='/index.css' /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + </head> + <body> + <div id='header'> + <span class='title'>senders.io</span> + <nav> + <a href="./resume">Resume</a> + <a href="./blog">Blog</a> + <a href="https://github.com/s3nd3r5">Github</a> + </nav> + </div> + <div id='body'> + <article> + <h1>Welcome to Stephen Enders' homepage</h1> + <p>This is my personal site for my projects and other random stuff I feel like uploading.</p> + </article> + <article id='homepage-post'> + <h1>Recent Post - 2018-01-18</h1> + <p>First!</p> + <p>My plan for this site is part of my New Years Resolution to not only improve my non-technical-document writing, + but to also upload whatever I am working on.</p> + </article> + </div> + </body> +</html> |