summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.html22
-rw-r--r--style.css16
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;
+}
+