diff --git a/Boyd Stevens/README.md b/Boyd Stevens/README.md
new file mode 100644
index 00000000..f0701e82
--- /dev/null
+++ b/Boyd Stevens/README.md
@@ -0,0 +1,15 @@
+# Movie Search Application
+
+This is a basic movie search application built upon the OMDB API. When the user searches any movie like "Avengers", It will show the top 10 movies with the name 'Avengers' in it.
+
+When the user clicks on the specific movie, they will be redirected to the IMDB site where the movie details will be visible.
+
+# Technologies Used
+
+HTML
+CSS
+JS
+
+# API Used
+
+OMDB Api
\ No newline at end of file
diff --git a/Boyd Stevens/index.html b/Boyd Stevens/index.html
new file mode 100644
index 00000000..966b063e
--- /dev/null
+++ b/Boyd Stevens/index.html
@@ -0,0 +1,25 @@
+
+
+
+
+
+ Movie Search Application
+
+
+
+
+
+
+
Search About The Movie
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Boyd Stevens/script.js b/Boyd Stevens/script.js
new file mode 100644
index 00000000..32a3c10c
--- /dev/null
+++ b/Boyd Stevens/script.js
@@ -0,0 +1,62 @@
+let movie = document.querySelector('input');
+let search = document.querySelector('button');
+
+let title = document.querySelector('.title');
+let year = document.querySelector('.year');
+let type = document.querySelector('.type');
+let poster = document.querySelector('img');
+
+let movies = document.querySelector('.movies-container');
+
+async function getMovie(){
+ try{
+ let movieName = movie.value;
+
+ if(movieName === ""){
+ alert("Please enter movie name");
+ return;
+ }
+
+ let url = `https://www.omdbapi.com/?apikey=d36ffd1a&s=${movieName}`;
+
+ let res = await fetch(url);
+ let data = await res.json();
+ movies.innerHTML = "";
+
+ if(data.Response === "False"){
+ alert("Movie not found");
+ return;
+ }
+
+ for(let i=0;i
+
+