44 lines
1.6 KiB
HTML
44 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Übung 22: Die dunkle Seite schlägt zurück …</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">
|
|
<h1>Übung 22: Die dunkle Seite schlägt zurück …</h1>
|
|
|
|
<p>
|
|
Endlich setzt du deinen Kampf gegen die dunkle Seite von JS fort (siehe Übung 20) und erstellst zwei neue
|
|
»Kampf-Sequenzen«:
|
|
</p>
|
|
<p>»What's the German word for if« (Mehrere Lösungsmöglichkeiten: wenn, falls).</p>
|
|
<p>»Now, please enter a string with a length between 8 and 15 characters …«</p>
|
|
</div>
|
|
<div class="alert alert-primary">
|
|
<h2>Übung 23: Die dunkle Seite schlägt zurück…</h2>
|
|
<p>
|
|
Endlich setzen Sie Ihren Kampf gegen die dunkle Seite von JS fort (siehe Übung 20) und erstellen zwei neue
|
|
»Kampf-Sequenzen«:
|
|
</p>
|
|
<ul class="list">
|
|
<li>»What's the German word for if« (Mehrere Lösungsmöglichkeiten: wenn, falls).</li>
|
|
<li>»Now, please enter a string with a length between 8 and 15 characters…«</li>
|
|
</ul>
|
|
</div>
|
|
</main>
|
|
<script>
|
|
'use strict';
|
|
|
|
// const username = prompt('Wilkommen. Wie heißen Sie?');
|
|
|
|
/*
|
|
TODO: Your Code
|
|
*/
|
|
</script>
|
|
</body>
|
|
</html>
|