Movies App

Movies App

The movies app is a web application to discover popular movies use The Movie Database API.

The movies app is a web application to discover popular movies use The Movie Database API.

Overview:

Overview

The Movies Application is a dynamic web application that allows users to discover popular movies and search for specific films using The Movie Database (TMDB) API. The web page is built using HTML, CSS, and JavaScript, creating a simple and easy to use interface. This project demonstrates the effective us of API's to create interactive web application's, and highlights coding skills which can be a valuble edition UX designer's tool kit.

The Movies Application is a dynamic web application that allows users to discover popular movies and search for specific films using The Movie Database (TMDB) API. The web page is built using HTML, CSS, and JavaScript, creating a simple and easy to use interface. This project demonstrates the effective us of API's to create interactive web application's, and highlights coding skills which can be a valuble edition UX designer's tool kit.

HTML

HTML: The HTML file defines the basic structure of the web page, including the header with a search form and a main section where movies are displayed.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Movies App</title>
    <link rel="stylesheet" href="css/style.css">
    
</head>
<body>
    
    <header>
        <form id="form">
            <input type="text" class="search" id="search"
            placeholder="Search">
    </header>

    <main id="main"></main>

   
   <script src="js/script.js"></script>
</body>
</html>

HTML

HTML: The HTML file defines the basic structure of the web page, including the header with a search form and a main section where movies are displayed.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Movies App</title>
    <link rel="stylesheet" href="css/style.css">
    
</head>
<body>
    
    <header>
        <form id="form">
            <input type="text" class="search" id="search"
            placeholder="Search">
    </header>

    <main id="main"></main>

   
   <script src="js/script.js"></script>
</body>
</html>

HTML

CSS

JavaScript

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Movies App</title>
    <link rel="stylesheet" href="css/style.css">
    
</head>
<body>
    
    <header>
        <form id="form">
            <input type="text" class="search" id="search"
            placeholder="Search">
    </header>

    <main id="main"></main>

   
   <script src="js/script.js"></script>
</body>
</html>

HTML: The HTML file defines the basic structure of the web page, including the header with a search form and a main section where movies are displayed.

HTML

CSS

JavaScript

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Movies App</title>
    <link rel="stylesheet" href="css/style.css">
    
</head>
<body>
    
    <header>
        <form id="form">
            <input type="text" class="search" id="search"
            placeholder="Search">
    </header>

    <main id="main"></main>

   
   <script src="js/script.js"></script>
</body>
</html>

HTML: The HTML file defines the basic structure of the web page, including the header with a search form and a main section where movies are displayed.

HTML

CSS

JavaScript

HTML: The HTML file defines the basic structure of the web page, including the header with a search form and a main section where movies are displayed.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Movies App</title>
    <link rel="stylesheet" href="css/style.css">
    
</head>
<body>
    
    <header>
        <form id="form">
            <input type="text" class="search" id="search"
            placeholder="Search">
    </header>

    <main id="main"></main>

   
   <script src="js/script.js"></script>
</body>
</html>

Final Product

Final Product