Files
JS/01_grundlagen/uebungen/u02_alert.html
Philippe Torrel bc36251c36
2026-06-16 16:15:03 +02:00

28 lines
816 B
HTML

<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Übung 2: Alarm!</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
<main>
<div class="container py-5">
<div class="alert alert-primary">
<h2>Übung 2: Alarm!</h2>
<p>
Gib den folgenden Text in einer Alert-Box aus: »Alert! Your console is on fire! Hurry! Write an email to the
fire department.
</p>
</div>
</div>
</main>
<script>
'use strict';
alert('Alert! Your console is on fire! Hurry! Write an email to the fire department.');
</script>
</body>
</html>