lemserv/wwwdata/index.html
2023-02-20 00:44:32 +01:00

17 lines
207 B
HTML

<!doctype html>
<html>
<head>
<title>bla</title>
</head>
<body onkeydown="myFn()">
<h3>tut</h3>
<script>
document.addEventListener('keydown', function(event) {
alert('bla');
});
</script>
</body>
</html>