diff --git a/_includes/header.html b/_includes/header.html
index c8d903e..821c4ad 100644
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -57,6 +57,11 @@
{{ job_info.intro }}
+
I am currently working in {{ site.location }} for {{ site.company }}.
diff --git a/_includes/navbar.html b/_includes/navbar.html
new file mode 100644
index 0000000..fc851a6
--- /dev/null
+++ b/_includes/navbar.html
@@ -0,0 +1,8 @@
+
diff --git a/_sass/_navbar.scss b/_sass/_navbar.scss
new file mode 100644
index 0000000..599d1df
--- /dev/null
+++ b/_sass/_navbar.scss
@@ -0,0 +1,38 @@
+
+/* Header */
+header {
+ padding-bottom: 50px;
+ nav {
+ background: #fff;
+ ul {
+ width: 100%;
+ background: #fff;
+ display: flex;
+ justify-content: flex-start;
+ margin: 0;
+ padding: 0;
+ list-style: none;
+ line-height: 1em;
+
+ li a {
+ font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
+ color: #696969;
+ display: block;
+ padding: 1em;
+ padding-left: 1.5em;
+ padding-right: 1.5em;
+ text-decoration: none;
+ font-size: 16px;
+ }
+
+ li a:hover {
+ color: #555;
+ background: #fafafa;
+ }
+
+ li a.selected {
+ background: #eee;
+ }
+ }
+ }
+}
diff --git a/css/main.scss b/css/main.scss
index 2f921eb..5ffe148 100644
--- a/css/main.scss
+++ b/css/main.scss
@@ -11,4 +11,5 @@
@import "layout";
// Layouts
-@import "resume";
\ No newline at end of file
+@import "resume";
+@import "navbar";