Beispiel mit Javascript

This commit is contained in:
2026-02-19 18:59:26 +01:00
commit 5a716c2a9a

12
beispielseite.html Normal file
View File

@@ -0,0 +1,12 @@
<html>
<head>
<script>
function meineFunktion(){
alert("Hallo");
}
</script>
</head>
<body>
<button onclick="meineFunktion();">Klick mich</button>
</body>
</html>