Stel je eigen pakket samen!
Online les (standaard)
Op locatie, bij jou thuis (+ €5 p/u)*
Per les (~1 uur) betalen (niet aanbevolen)
Pakket 10 lessen (€ 20 korting)
Pakket 20 lessen (€ 45 korting)
Pakket 30 lessen (€ 70 korting)
.container {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
width: 400px;
margin: 0 auto;
}
function calculateTotal() {
const serviceType = document.querySelector('input[name="serviceType"]:checked').value;
const option1 = document.querySelector('input[name="option1"]').checked;
const option2 = document.querySelector('input[name="option2"]').checked;
let totalPrice = 0;
if (serviceType === "basic") {
totalPrice += 50;
} else if (serviceType === "premium") {
totalPrice += 100;
}
if (option1) {
totalPrice += 10;
}
if (option2) {
totalPrice += 20;
}
document.getElementById('totalPrice').textContent = totalPrice;
}