Files
JS/01_grundlagen/uebungen/u01_console.html
Philippe Torrel a5b98fc33a
2026-09-08 08:36:52 +02:00

25 lines
669 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 1: In die Konsole geloggt</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 1: In die Konsole geloggt</h2>
<p>Gib deinen Namen in der Konsole aus.</p>
</div>
</div>
</main>
<script>
'use strict';
console.log('Philippe', 'Torrel');
</script>
</body>
</html>