This commit is contained in:
EspenVista
2025-04-03 12:33:16 +01:00
parent de888d9f3a
commit 2443c4b0d5
4 changed files with 11 additions and 5 deletions

0
contact.html Normal file
View File

View File

@@ -11,8 +11,14 @@
<body> <body>
<nav class="navbar"> <nav class="navbar">
<ul class="nav-links"> <ul class="nav-links">
<li><a href="#over-ons">Over ons</a></li> <button>
<li><a href="#contact">Contact</a></li> <a href="overons.html">Over ons</a>
</button>
<button>
<a href="contact.html">contact</a>
</button>
</ul> </ul>
</nav> </nav>

0
overons.html Normal file
View File

View File

@@ -15,8 +15,8 @@
.navbar { .navbar {
display: flex; display: flex;
align-items: center; align-items: right;
justify-content: center; justify-content: right;
background-color: #000; background-color: #000;
padding: 10px 20px; padding: 10px 20px;
} }
@@ -38,6 +38,6 @@
} }
.nav-links a { .nav-links a {
text-decoration: none; text-decoration: none;
color: white; color: rgb(0, 0, 0);
font-size: 18px; font-size: 18px;
} }