Startpagina
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coolen Musical Instruments | Exclusieve Accordeons</title>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background: #0d0d0d;
color: white;
}
header {
height: 100vh;
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
url('accordion1.jpg') center/cover no-repeat;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 20px;
}
header h1 {
font-family: 'Playfair Display', serif;
font-size: 60px;
letter-spacing: 3px;
margin-bottom: 20px;
}
header p {
font-size: 20px;
max-width: 600px;
margin-bottom: 30px;
opacity: 0.8;
}
.btn {
display: inline-block;
padding: 15px 35px;
background: gold;
color: black;
text-decoration: none;
font-weight: 600;
border-radius: 30px;
transition: 0.3s;
}
.btn:hover {
background: white;
}
.section {
padding: 100px 10%;
text-align: center;
}
.section h2 {
font-family: 'Playfair Display', serif;
font-size: 40px;
margin-bottom: 50px;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.gallery img {
width: 100%;
border-radius: 15px;
transition: 0.4s;
}
.gallery img:hover {
transform: scale(1.05);
}
.contact {
background: #111;
padding: 80px 20px;
text-align: center;
}
.contact h3 {
font-size: 28px;
margin-bottom: 20px;
}
footer {
background: black;
padding: 20px;
text-align: center;
font-size: 14px;
opacity: 0.6;
}
@media(max-width:768px){
header h1{
font-size:40px;
}
}
</style>
</head>
<body>
<header>
<h1>Coolen Musical Instruments</h1>
<p>Exclusieve accordeons voor de echte liefhebber. Vakmanschap, klasse en puur geluid.</p>
<a href="tel:0655894548" class="btn">Maak een afspraak</a>
</header>
<section class="section">
<h2>Onze Selectie</h2>
<div class="gallery">
<img src="accordion1.jpg" alt="Accordeon 1">
<img src="accordion2.jpg" alt="Accordeon 2">
<img src="accordion3.jpg" alt="Accordeon 3">
</div>
</section>
<section class="contact">
<h3>Bezoek op afspraak</h3>
<p>Wij werken uitsluitend op afspraak voor persoonlijke aandacht en advies.</p>
<br>
<a href="tel:0655894548" class="btn">Bel: 0655894548</a>
</section>
<footer>
© 2026 Coolen Musical Instruments – Exclusief Accordeon Specialist
</footer>
</body>
</html>