diff --git a/contact.html b/contact.html
new file mode 100644
index 0000000..e69de29
diff --git a/index.html b/index.html
index 557db03..ec77b86 100644
--- a/index.html
+++ b/index.html
@@ -1 +1,18 @@
-Hello World
+
+
+
+
+ My website
+
+
+
+
+
+
\ No newline at end of file
diff --git a/projects.html b/projects.html
new file mode 100644
index 0000000..e69de29
diff --git a/resume.html b/resume.html
new file mode 100644
index 0000000..e69de29
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..539718e
--- /dev/null
+++ b/style.css
@@ -0,0 +1,46 @@
+html {
+ background-color: #303030;
+ font-family: Verdana, Geneva, Tahoma, sans-serif;
+}
+
+body {
+ margin: 0;
+ padding: 0;
+}
+
+.topnav {
+ background-color: #222;
+ overflow: hidden;
+ margin: 0px;
+ position: fixed;
+ top: 0;
+ width: 100%;
+}
+
+.topnav ul {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+}
+
+.topnav li {
+ display: inline;
+}
+
+.topnav a {
+ display: block;
+ float: right;
+ color: aliceblue;
+ text-align: center;
+ padding: 14px 16px;
+ text-decoration: none;
+ font-size: medium;
+}
+
+.topnav a:hover {
+ background-color: black;
+}
+
+.active {
+ background-color: royalblue;
+}
\ No newline at end of file