diff --git a/MovieInfoApp/0kt1/README.md b/MovieInfoApp/0kt1/README.md
new file mode 100644
index 000000000..c66c91521
--- /dev/null
+++ b/MovieInfoApp/0kt1/README.md
@@ -0,0 +1,25 @@
+# Movie Details Website
+
+A simple JavaScript web application to search for and display movie details.
+
+
+## Features
+
+- Enter a movie name and get details about the movie.
+- Uses the OMDB API to fetch movie data.
+- Responsive and user-friendly design.
+
+
+## Images
+
+
+- [Screenshots](images/Screenshot1.png)
+- [Screenshots](images/Screenshot2.png)
+- [Screenshots](images/Screenshot3.png)
+- [Screenshots](images/Screenshot4.png)
+
+
+
+
+
+
diff --git a/MovieInfoApp/0kt1/images/Screenshot1.png b/MovieInfoApp/0kt1/images/Screenshot1.png
new file mode 100644
index 000000000..d50842dc9
Binary files /dev/null and b/MovieInfoApp/0kt1/images/Screenshot1.png differ
diff --git a/MovieInfoApp/0kt1/images/Screenshot2.png b/MovieInfoApp/0kt1/images/Screenshot2.png
new file mode 100644
index 000000000..948dd0b1f
Binary files /dev/null and b/MovieInfoApp/0kt1/images/Screenshot2.png differ
diff --git a/MovieInfoApp/0kt1/images/Screenshot3.png b/MovieInfoApp/0kt1/images/Screenshot3.png
new file mode 100644
index 000000000..30f08bc72
Binary files /dev/null and b/MovieInfoApp/0kt1/images/Screenshot3.png differ
diff --git a/MovieInfoApp/0kt1/images/Screenshot4.png b/MovieInfoApp/0kt1/images/Screenshot4.png
new file mode 100644
index 000000000..b83438833
Binary files /dev/null and b/MovieInfoApp/0kt1/images/Screenshot4.png differ
diff --git a/MovieInfoApp/0kt1/index.html b/MovieInfoApp/0kt1/index.html
new file mode 100644
index 000000000..7f5dd7449
--- /dev/null
+++ b/MovieInfoApp/0kt1/index.html
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+ Movie Details
+
+
+
+
+
Movie Details
+
+
+
+
+
+
+
+
+
+
diff --git a/MovieInfoApp/0kt1/script.js b/MovieInfoApp/0kt1/script.js
new file mode 100644
index 000000000..138a66c49
--- /dev/null
+++ b/MovieInfoApp/0kt1/script.js
@@ -0,0 +1,43 @@
+const apiKey = '76d079f0'; // Get an API key from http://www.omdbapi.com/apikey.aspx
+
+const movieInput = document.getElementById('movieInput');
+const searchButton = document.getElementById('searchButton');
+const movieDetails = document.getElementById('movieDetails');
+
+searchButton.addEventListener('click', () => {
+ const movieName = movieInput.value.trim();
+
+ if (movieName !== '') {
+ fetch(`http://www.omdbapi.com/?t=${movieName}&apikey=${apiKey}`)
+ .then((response) => response.json())
+ .then((data) => {
+ if (data.Response === 'True') {
+ // Display movie details
+ movieDetails.innerHTML = `
+