some web data

This commit is contained in:
Thilo Karraß 2023-02-20 00:44:32 +01:00
parent 15e2ff811b
commit b5027da711

View File

@ -3,8 +3,14 @@
<head> <head>
<title>bla</title> <title>bla</title>
</head> </head>
<body> <body onkeydown="myFn()">
<h3>tut</h3> <h3>tut</h3>
<script>alert('blubb');</script> <script>
document.addEventListener('keydown', function(event) {
alert('bla');
});
</script>
</body> </body>
</html> </html>