-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 1.1 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./index.js" defer></script>
<script src="../../helpers/header.js" type="module"></script>
<link rel="stylesheet" href="./index.css">
</head>
<body>
<main>
<div class="search-bar">
<input type="text" id="search-input" placeholder="Search for a movie">
<button id="search-button">Search</button>
</div>
<div class="movie-info">
<div class="poster">
<img id="movie-poster" src="" alt="Movie Poster">
</div>
<div class="details">
<h2 id="movie-title"></h2>
<p>Genre: <span id="movie-genre"></span></p>
<p>Cast: <span id="movie-cast"></span></p>
<p>IMDb Rating: <span id="movie-rating"></span></p>
<p>Released Date: <span id="movie-released"></span></p>
<p>Director: <span id="movie-director"></span></p>
</div>
</div>
</main>
</body>
</html>