summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcss/desktop/header.css10
-rwxr-xr-xhtml/header.html8
2 files changed, 17 insertions, 1 deletions
diff --git a/css/desktop/header.css b/css/desktop/header.css
index ad7afb8..0364bfa 100755
--- a/css/desktop/header.css
+++ b/css/desktop/header.css
@@ -50,4 +50,14 @@
display: flex;
align-items: center;
border-bottom: 1px solid #98A5B0;
+ justify-content: space-between;
+}
+
+.header .navbar a {
+ text-decoration: none;
+ color: black;
+}
+
+.header .navbar a:hover {
+ text-decoration: underline;
}
diff --git a/html/header.html b/html/header.html
index 5035bfa..827ac18 100755
--- a/html/header.html
+++ b/html/header.html
@@ -28,6 +28,12 @@
</div>
</a>
<nav class="navbar">
- <p>Hello, world!</p>
+ <div>
+ <a href="/">Home</a>
+ </div>
+ <div>
+ <a href="/signup">Sign-up</a>
+ <a href="/signin">Sign-in</a>
+ </div>
</nav>
</div>