-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (63 loc) · 2.29 KB
/
Copy pathindex.html
File metadata and controls
79 lines (63 loc) · 2.29 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
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="UTF-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Movie Database</title>
<script data-main="scripts/app" src="scripts/require.js"></script>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> -->
<!-- <script src="scripts/film.js"></script>
<script src="scripts/info_display.js"></script>
<script src="scripts/displayed_films.js"></script>
<script src="scripts/view_updater.js"></script>
<script src="scripts/film_array.js"></script> -->
</head>
<body>
<header>
<div id="title">
<h1 id="prova">MOVIE DATABASE</h1>
<img id="logo" src="images/film_icon.png" alt="film_logo">
</div>
<ul class="menu">
<li class="menu">
<a href="#home">Home</a>
</li>
<li class="menu">
<a href="#movies">Movies</a>
</li>
<li class="search">
<form>
<input id="searchBar" type="text" name="search" placeholder="Search...">
</form>
</li>
</ul>
</header>
<main>
<div id="movies_list">
<table id="movies_table">
<thead>
<tr>
<th>NAME</th>
<th>DIRECTOR</th>
<th>STUDIO</th>
<th>YEAR</th>
<th>GENRE</th>
<th>REVENUE ($)</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="stats">
<div class="stats">Selected rows: <span class="statVal" id="statsSelected"></span></div>
<div class="stats">Average revenue: <span class="statVal" id="statsAvgRev"></span></div>
<div class="stats">Years: MIN: <span class="statVal" id="statsMinYear"></span> MAX: <span class="statVal" id="statsMaxYear"></span> </div>
</div>
</main>
<footer>
<div>This site is under development...<br/>Reti S.p.a.</div>
</footer>
</body>
</html>