update: day2

This commit is contained in:
Philippe Torrel
2026-06-16 11:51:14 +02:00
parent efb2bf5f94
commit 922ce17e30
3 changed files with 83 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<!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>