-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecommendations.html
53 lines (53 loc) · 1.97 KB
/
recommendations.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
<!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">
<h5 class="title">RECOMMENDATIONS</h5>
<h4>let's hope you like my taste :)</h4>
</section>
<section id="my-top-ten">
<h2>MY TOP TEN</h2>
<div id="top-ten-section" class="horizontal-scroll">
</div>
</section>
<section id="filter-films-section">
<div id="filters">
<div class="filter">
<h2>GENRES:</h2>
<div id="genre-filters">
</div>
</div>
<div class="filter">
<h2>PLATFORMS:</h2>
<div id="platform-filters"></div>
</div>
<div class="filter">
<h2>CONTENT RATING:</h2>
<div id="content-rating-filters"></div>
</div>
</div>
<div id="films-filtered">
</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/recommendations.js" type="text/javascript"></script>
</html>