-
Notifications
You must be signed in to change notification settings - Fork 0
/
details.html
91 lines (90 loc) · 2.58 KB
/
details.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!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">
<link rel="stylesheet" href="css/main.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<script src="js/details.js"></script>
<title>API</title>
</head>
<body>
<a href="index.html" class="btn btn-primary"> Back</a>
<table class="table table-striped">
<tr>
<td>Title</td>
<td id="Title">Title</td>
</tr>
<tr>
<td>Type</td>
<td id="Type">Type</td>
</tr>
<tr>
<td>Year</td>
<td id="Year">Year</td>
</tr>
<tr>
<td>Rating</td>
<td id="Rating">Rating</td>
</tr>
<tr>
<td>Released</td>
<td id="Released">Released</td>
</tr>
<tr>
<td>BoxOffice</td>
<td id="BoxOffice">BoxOffice</td>
</tr>
<tr>
<td>Production</td>
<td id="Production">Production</td>
</tr>
<tr>
<td>Duration</td>
<td id="Duration">Duration</td>
</tr>
<tr>
<td>Genre</td>
<td id="Genre">Genre</td>
</tr>
<tr>
<td>Director</td>
<td id="Director">Director</td>
</tr>
<tr>
<td>Writer</td>
<td id="Writer">Writer</td>
</tr>
<tr>
<td>Actors</td>
<td id="Actors">Actors</td>
</tr>
<tr>
<td>Plot</td>
<td id="Plot">Plot</td>
</tr>
<tr>
<td>Awards</td>
<td id="Awards">Awards</td>
</tr>
<tr>
<td>Language</td>
<td id="Language">Language</td>
</tr>
<tr>
<td>Metascore</td>
<td id="Metascore">Metascore</td>
</tr>
<tr>
<td>imdbRating</td>
<td id="imdbRating">imdbRating</td>
</tr>
<tr>
<td>Poster</td>
<td id="Poster">Poster</td>
</tr>
</table>
</body>
</html>