This commit is contained in:
vista-man
2025-04-03 13:27:45 +02:00
2 changed files with 44 additions and 1 deletions

View File

@@ -7,7 +7,15 @@
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
</head>
<body>
<nav class="navbar">
<ul class="nav-links">
<li><a href="#over-ons">Over ons</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<body>
<div class="container mt-5">

View File

@@ -6,3 +6,38 @@
#qrCodeContainer {
margin-top: 20px;
}
body {
margin: 0;
font-family: Arial, sans-serif;
}
.navbar {
display: flex;
align-items: center;
justify-content: center;
background-color: #000;
padding: 10px 20px;
}
.logo {
height: 50px;
position: absolute;
left: 20px;
}
.nav-links {
list-style: none;
padding: 0;
display: flex;
}
.nav-links li {
margin: 0 15px;
}
.nav-links a {
text-decoration: none;
color: white;
font-size: 18px;
}