lab-development-imb/web/09/demos/js/02_hello.html

18 lines
337 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello World</title>
</head>
<body>
<h1>Grüße an alle</h1>
<h2>TH Mannheim</h2>
<script src="02_hello.js"></script>
<h2>Welt</h2>
<script>alert("Hallo Welt!");</script>
</body>
</html>