Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#blokje {
width: 100px;
height: 100px;
background-color: red;
}
#blokje:hover {
background-color: blue;
transition: all 2s ease-in;
}
</style>
</head>
<body>
<div id="blokje">
<p>test</p>
</div>
</body>
</html>