diff --git a/cursus.html b/cursus.html
index 6b80889..b540488 100644
--- a/cursus.html
+++ b/cursus.html
@@ -5,6 +5,7 @@
diff --git a/effect.js b/effect.js
new file mode 100644
index 0000000..8c7bdf2
--- /dev/null
+++ b/effect.js
@@ -0,0 +1,30 @@
+// Get the theme switch checkbox
+const themeSwitch = document.getElementById('theme-switch');
+
+// Function to set the theme
+const setTheme = (isDark) => {
+ if (isDark) {
+ document.body.classList.add('dark-mode');
+ document.body.classList.remove('light-mode');
+ } else {
+ document.body.classList.add('light-mode');
+ document.body.classList.remove('dark-mode');
+ }
+};
+
+// Retrieve the saved theme from localStorage
+const savedTheme = localStorage.getItem('theme');
+if (savedTheme) {
+ const isDark = savedTheme === 'dark';
+ themeSwitch.checked = !isDark; // Set the switch position
+ setTheme(isDark);
+} else {
+ setTheme(true); // Default to dark mode
+}
+
+// Listen for changes on the switch
+themeSwitch.addEventListener('change', (e) => {
+ const isDark = !e.target.checked; // Light mode when checked
+ setTheme(isDark);
+ localStorage.setItem('theme', isDark ? 'dark' : 'light'); // Save preference
+});
\ No newline at end of file
diff --git a/form.html b/form.html
new file mode 100644
index 0000000..28367da
--- /dev/null
+++ b/form.html
@@ -0,0 +1,84 @@
+
+
+
+
+
+
Contact Us
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/form.php b/form.php
deleted file mode 100644
index 6d2d527..0000000
--- a/form.php
+++ /dev/null
@@ -1,52 +0,0 @@
-
-
-
-
-
Contactez-moi
-
-
-
-
Formulaire de Contact
-
-
-
diff --git a/images.html b/images.html
index 5d1c0e3..f3d3b88 100644
--- a/images.html
+++ b/images.html
@@ -30,7 +30,12 @@
Formulaire
+
+
diff --git a/img/faced.jpg b/img/faced.jpg
new file mode 100644
index 0000000..01d5b30
Binary files /dev/null and b/img/faced.jpg differ
diff --git a/index.html b/index.html
index 5ead86d..1ddb7d2 100644
--- a/index.html
+++ b/index.html
@@ -3,6 +3,7 @@
+
Corentin
+
-