diff options
author | Dustin Walker <dustin.walker@email.wsu.edu> | 2021-03-17 00:35:36 -0400 |
---|---|---|
committer | Dustin Walker <dustin.walker@email.wsu.edu> | 2021-03-17 00:35:36 -0400 |
commit | 29e91d3164d88ee254cd8efc413b621e28b7730f (patch) | |
tree | 1a4c571bc9ca8835e3c56193bd2f93c71a496335 | |
parent | a1e5b6fbd4dadd751f4c40b39842ff36f2cc0648 (diff) |
first draft
-rw-r--r-- | index.html | 22 | ||||
-rw-r--r-- | style.css | 16 |
2 files changed, 38 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..7a5389b --- /dev/null +++ b/index.html @@ -0,0 +1,22 @@ +<!DOCTYPE HTML> +<html lang="en"> + + <head> + <title>Dustin Walker's Webpage</title> + <meta charset="utf-8"/> + <link rel='stylesheet' type='text/css' href='style.css'/> + <link rel="shortcut icon" type="image/x-icon" href="favicon.ico"/> + </head> + <body> + <h1>Dustin Walker's Webpage</h1> + <p>This website is currently under construction. + </p> + + <h2>GIT</h2> + <ul> + <li><a href="https://git.dwalker.xyz">Self host</a></li> + <li><a href="https://github.com/jackoblades">Github</a></li> + </ul> + </body> + +</html> diff --git a/style.css b/style.css new file mode 100644 index 0000000..531b562 --- /dev/null +++ b/style.css @@ -0,0 +1,16 @@ +body { + background: #121212; +} + +p, h1, h2, h3, h4 { + color: #dedede; +} + +li { + color: #dedede; +} + +a { + color: #6767de; +} + |