Film Finder is a web application that recommends random movies based on genre selection. It uses the TMDB (The Movie Database) API to fetch movie data and provide personalized movie suggestions.
- Genre selection from a dropdown menu
- Random movie recommendations based on selected genre
- Display of movie details including title, poster, and overview
- Option to like or dislike a movie to get new suggestions
- The app fetches a list of genres from the TMDB API and populates a dropdown menu.
- When a user selects a genre, the app fetches a list of movies in that genre.
- A random movie is selected from the list and its details are fetched.
- The movie information is displayed on the page.
- Users can like or dislike the movie to get a new suggestion.
- HTML
- CSS
- JavaScript
- TMDB API
- Clone this repository.
- Obtain an API key from The Movie Database (TMDB).
- Replace
YOUR_API_KEY
in thescript.js
file with your actual TMDB API key. - Open
index.html
in a web browser.
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.