-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilm.html
70 lines (70 loc) · 2.64 KB
/
film.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>IamDb</title>
<link rel="stylesheet" href="./assets/css/styles.css">
</head>
<body>
<header>
<a href="index.html"><h1 id="nameplate">IamDb</h1></a>
<nav id="navlinks">
<a href="recommendations.html"><h2>Recommendations.</h2></a>
<a href="reviews.html"><h2>Reviews.</h2></a>
</nav>
</header>
<main>
<div id="spacer">
</div>
<div id="content">
<section class="title-section">
<div id="poster-gallery">
</div>
<div id="film-info">
<div id="film-page-title"></div>
<div id="film-details">
</div>
</div>
</section>
<section>
<h1 id="quote"></h1>
</section>
<section id="extra-info-section">
<div id="extra-info">
<div class="extra-info">
<h2>GENRES:</h2>
<div id="film-genres"></div>
</div>
<div class="extra-info">
<h2>BECHDEL TEST:</h2>
<div id="bechdel-test"></div>
</div>
<div class="extra-info">
<h2>AVAILABLE ON:</h2>
<div id="availability"></div>
</div>
<div class="extra-info">
<h2>MY RATING:</h2>
<div id="my-rating"></div>
</div>
</div>
<div id="ticket">
</div>
</section>
<section id="spoilers">
<h1>SPOILERS. SPOILERS. SPOILERS. SPOILERS. SPOILERS. SPOILERS. SPOILERS. SPOILERS. SPOILERS.</h1>
</section>
<section id="film-review">
<div id="review-gallery">
</div>
<div id="my-review">
<h1>MY REVIEW</h1>
<h4 id="review-content"></h4>
</div>
</section>
</div>
</main>
</body>
<!-- <script src="app.js" type="text/javascript"></script> -->
<script src="./assets/js/main.js" type="text/javascript"></script>
<script src="./assets/js/film.js" type="text/javascript"></script>
</html>