lemserv/wwwdata/index.html

17 lines
207 B
HTML
Raw Permalink Normal View History

2023-02-19 21:13:19 +01:00
<!doctype html>
<html>
<head>
<title>bla</title>
</head>
2023-02-20 00:44:32 +01:00
<body onkeydown="myFn()">
2023-02-19 21:13:19 +01:00
<h3>tut</h3>
2023-02-20 00:44:32 +01:00
<script>
document.addEventListener('keydown', function(event) {
alert('bla');
});
</script>
2023-02-19 21:13:19 +01:00
</body>
</html>
2023-02-20 00:44:32 +01:00