This repository has been archived on 2025-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2bki21/komp/javascript.html
danielvici123 2d0894a8f3 aufgabe 25-1-10
2025-01-10 10:06:49 +01:00

13 lines
269 B
HTML

<html>
<head>
<title> JavaScript Beispiel </title>
<script type="text/javascript">
function main(){
document.writeln("Hallo Welt!<p>");
}
</script>
</head>
<body onload="main();">
<noscript> JavaScript ist nicht eingeschaltet </noscript>
</body>
</html>