<!DOCTYPE html>
<html>
<head>
<title>Der Titel des Dokuments</title>
<style>
input.larger {
transform: scale(5);
margin: 30px;
}
</style>
</head>
<body>
<p>Voreingestellte Kontrollkästchengröße:</p>
<input type="checkbox" name="checkBox1" checked>
<p>Ein größeres Kontrollkästchen:</p>
<input type="checkbox" class="larger" name="checkBox2" checked>
</body>
</html>