-
Notifications
You must be signed in to change notification settings - Fork 1
/
selectedItem.html
63 lines (54 loc) · 1.65 KB
/
selectedItem.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<!-- HTML tag with lang set to english -->
<html lang="en">
<head>
<!-- META data information -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- import styles starts here -->
<link rel="stylesheet" href="./selectedItem.css" />
<!-- import styles ends here -->
<!-- page title -->
<title>>Movie Database</title>
</head>
<body>
<div class="container">
<div id="movie-box">
<h1 id="original_title" class="margin-left-10"></h1>
<div class="inner-container">
<img id="poster" alt="movie-poster" height="auto" width="auto" />
<div class="padding-left-40">
<p>
<b>Overview:</b>
<span id="overview"></span>
<br />
Link: <a id="homepage">Home Page</a>
</p>
<table>
<tr>
<th>Adult</th>
<th>Budget</th>
<th>Release Date</th>
<th>Status</th>
<th>Tagline</th>
</tr>
<tr>
<td id="movieType"></td>
<td id="budget"></td>
<td id="releaseDate"></td>
<td id="status"></td>
<td id="tagline"></td>
</tr>
</table>
<h4>Youtube Links:</h4>
<div id="youtube"></div>
</div>
</div>
</div>
<h2 id="notFound"></h2>
</div>
<br />
<!-- import the script from file ./selectedItems.js -->
<script src="./selectedItem.js"></script>
</body>
</html>