-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (30 loc) · 1.42 KB
/
index.html
File metadata and controls
38 lines (30 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TMDb API Movie Search</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="text-center">TMDb API Movie Search</h1>
<div id="searchContainer">
<label for="movieInput" class="form-label">Enter Movie Title:</label>
<input type="text" id="movieInput" class="form-control" placeholder="e.g., Inception">
<button onclick="searchMovie()" class="btn btn-primary">Search</button>
<div>
<button onclick="fetchMovies('popular')">Popular Movies</button>
<button onclick="fetchMovies('now_playing')">Now Playing Movies</button>
<button onclick="fetchMovies('top_rated')">Top Rated Movies</button>
<button onclick="fetchMovies('upcoming')">Upcoming Movies</button>
</div>
</div>
<div id="resultContainer" class="row row-cols-1 row-cols-md-4"></div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="script.js"></script>
</body>
</html>