uebungen-js/codesnippes/template.html

22 lines
376 B
HTML
Raw Normal View History

2025-07-20 18:19:37 +02:00
<!DOCTYPE html>
2025-07-29 17:02:15 +02:00
<html lang="de">
2025-07-20 18:19:37 +02:00
<head>
2025-07-29 17:02:15 +02:00
<meta charset="UTF-8">
<title>Titel</title>
2025-07-20 18:19:37 +02:00
</head>
<body>
<p>
<script>
/* Programmbeschreibung:
*/
let appname = 'Asteroid'
</script>
<noscript>Kein JS aktiviert?</noscript>
</p>
<canvas id="canvas" width="600" height="200">
</canvas>
</body>
2025-07-29 17:02:15 +02:00
</html>