diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..e915029
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+################################################################################
+# This .gitignore file was automatically created by Microsoft(R) Visual Studio.
+################################################################################
+
+/.vs
diff --git a/about.html b/about.html
new file mode 100644
index 0000000..62f6aed
--- /dev/null
+++ b/about.html
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+ This is where the body will be
+
+
+
\ No newline at end of file
diff --git a/fonts/Comfortaa-Bold.ttf b/fonts/Comfortaa-Bold.ttf
new file mode 100644
index 0000000..7f9573f
Binary files /dev/null and b/fonts/Comfortaa-Bold.ttf differ
diff --git a/fonts/Comfortaa-Light.ttf b/fonts/Comfortaa-Light.ttf
new file mode 100644
index 0000000..f356b73
Binary files /dev/null and b/fonts/Comfortaa-Light.ttf differ
diff --git a/fonts/Comfortaa-Regular.ttf b/fonts/Comfortaa-Regular.ttf
new file mode 100644
index 0000000..d2a58e2
Binary files /dev/null and b/fonts/Comfortaa-Regular.ttf differ
diff --git a/icon.svg b/icon.svg
new file mode 100644
index 0000000..2b54e72
--- /dev/null
+++ b/icon.svg
@@ -0,0 +1,9 @@
+
\ No newline at end of file
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..1455b65
--- /dev/null
+++ b/index.html
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/logo.svg b/logo.svg
new file mode 100644
index 0000000..8eaf78e
--- /dev/null
+++ b/logo.svg
@@ -0,0 +1,10 @@
+
\ No newline at end of file
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..ed2afcc
--- /dev/null
+++ b/style.css
@@ -0,0 +1,41 @@
+#header-bar {
+ height: 70px;
+ width: 100%;
+ background-color: rgb(208, 208, 208);
+}
+#header-title {
+ width: 30%;
+ padding-left: 20px;
+ font-size: 25px;
+}
+#icon {
+ height: 60px;
+}
+#navigation {
+ width: 70%;
+ padding-right: 20px !important;
+
+}
+.nav-sep {
+ position: relative;
+ left: 10px;
+ top: 6px;
+ padding-left: 20px;
+ border-left: 2px solid #232323;
+ height: 30px;
+}
+a {
+ color: #232323;
+ text-decoration: none;
+}
+a:hover {
+ color: rgb(57, 163, 225);
+ text-decoration: none;
+}
+.nav-item {
+ padding: 5px;
+ font-size: 20px;
+}
+body {
+ background-color: rgb(242, 242, 242);
+}
\ No newline at end of file