diff --git a/.vscode/settings.json b/.vscode/settings.json
index 2369810..865ae8a 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -17,8 +17,8 @@
"files.autoSave": "afterDelay",
"screencastMode.onlyKeyboardShortcuts": true,
"terminal.integrated.fontSize": 18,
- "workbench.activityBar.visible": true,
"workbench.colorTheme": "Visual Studio Dark",
"workbench.fontAliasing": "antialiased",
- "workbench.statusBar.visible": true
-}
+ "workbench.statusBar.visible": true,
+ "liveServer.settings.port": 5501
+}
\ No newline at end of file
diff --git a/Kapitel_01_bis_09/code/conditions.html b/Kapitel_01_bis_09/code/conditions.html
index da36596..715421a 100644
--- a/Kapitel_01_bis_09/code/conditions.html
+++ b/Kapitel_01_bis_09/code/conditions.html
@@ -1,52 +1,58 @@
+
Bedingter Code
+
- Bitte öffnen Sie die "Entwicklertools" bzw. "Werkzeuge für Web-Entwickler" mit Strg + Shift + I
+ Bitte öffnen Sie die "Entwicklertools" bzw. "Werkzeuge für Web-Entwickler" mit Strg + Shift + I
und klicken anschließend auf Konsole.
+
\ No newline at end of file
diff --git a/Kapitel_01_bis_09/code/datetime.html b/Kapitel_01_bis_09/code/datetime.html
index 1e097a4..1a60905 100644
--- a/Kapitel_01_bis_09/code/datetime.html
+++ b/Kapitel_01_bis_09/code/datetime.html
@@ -1,21 +1,24 @@
+
Datum und Zeit
+
- Bitte öffnen Sie die "Entwicklertools" bzw. "Werkzeuge für Web-Entwickler" mit Strg + Shift + I
+ Bitte öffnen Sie die "Entwicklertools" bzw. "Werkzeuge für Web-Entwickler" mit Strg + Shift + I
und klicken anschließend auf Konsole.
+ console.log(
+ "Es ist "
+ + today.getHours().toString().padStart(2, '0') + ":"
+ + today.getMinutes().toString().padStart(2, '0') + " Uhr.");
+
+
\ No newline at end of file
diff --git a/Kapitel_01_bis_09/code/hello.html b/Kapitel_01_bis_09/code/hello.html
new file mode 100644
index 0000000..82403b8
--- /dev/null
+++ b/Kapitel_01_bis_09/code/hello.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+ Hallo Welt!
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Kapitel_01_bis_09/code/hello_world.html b/Kapitel_01_bis_09/code/hello_world.html
index f684026..ccbb72a 100644
--- a/Kapitel_01_bis_09/code/hello_world.html
+++ b/Kapitel_01_bis_09/code/hello_world.html
@@ -10,9 +10,9 @@
diff --git a/Kapitel_01_bis_09/code/numbers.html b/Kapitel_01_bis_09/code/numbers.html
index 287882b..f162a38 100644
--- a/Kapitel_01_bis_09/code/numbers.html
+++ b/Kapitel_01_bis_09/code/numbers.html
@@ -1,13 +1,15 @@
+
Zahlen
+
- Bitte öffnen Sie die "Entwicklertools" bzw. "Werkzeuge für Web-Entwickler" mit Strg + Shift + I
+ Bitte öffnen Sie die "Entwicklertools" bzw. "Werkzeuge für Web-Entwickler" mit Strg + Shift + I
und klicken anschließend auf Konsole.
+
\ No newline at end of file
diff --git a/Kapitel_01_bis_09/code/strings.html b/Kapitel_01_bis_09/code/strings.html
index a6ae398..22aa98f 100644
--- a/Kapitel_01_bis_09/code/strings.html
+++ b/Kapitel_01_bis_09/code/strings.html
@@ -1,22 +1,26 @@
+
Zeichenketten
+
+
\ No newline at end of file