<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>M The Barber</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">
<img src="logo.png" alt="M The Barber Logo"> <!-- Zorg ervoor dat het logo pad juist is -->
</div>
<h1>M The Barber</h1>
</header>
<main>
<section class="intro">
<h2>Welkom bij M The Barber</h2>
<p>De beste barbershop in de stad, voor de scherpste kapsels en de beste service.</p>
</section>
</main>
<footer>
<p>© 2025 M The Barber | Alle rechten voorbehouden</p>
</footer>
</body>
</html>
/* Algemeen resetten van marges en opvulling */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: black; /* Zwarte achtergrond */
color: white; /* Witte tekst */
line-height: 1.6;
}
header {
text-align: center;
padding: 20px;
}
header h1 {
font-size: 3rem;
margin-top: 10px;
}
header .logo img {
width: 100px; /* Pas dit aan aan de grootte van je logo */
height: auto;
}
main {
text-align: center;
padding: 50px 20px;
}
main h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}
footer {
text-align: center;
padding: 10px;
position: absolute;
bottom: 0;
width: 100%;
background-color: #333;
}
footer p {
font-size: 1rem;
}