-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathselection.html
More file actions
55 lines (50 loc) · 1.91 KB
/
selection.html
File metadata and controls
55 lines (50 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MovieWeb | Selection</title>
<link rel="stylesheet" href="selection.css">
</head>
<body>
<header>
<div class="logo">MovieWeb</div>
<nav>
<ul>
<li onclick="window.history.back()">Home</li>
</ul>
</nav>
</header>
<div class="empty"></div>
<!-- Video Player Section -->
<section class="video-player">
<div class="player">
<iframe id="movie-player" width="100%" height="500" src="" frameborder="0" allowfullscreen></iframe>
</div>
<div class="genres">
<button class="genre-btn" data-genre="action">Action</button>
<button class="genre-btn" data-genre="animation">Animation</button>
<button class="genre-btn" data-genre="comedy">Comedy</button>
<button class="genre-btn" data-genre="drama">Drama</button>
<button class="genre-btn" data-genre="horror">Horror</button>
<button class="genre-btn" data-genre="scifi">Sci-Fi</button>
</div>
</section>
<!-- Movie Thumbnails -->
<section class="movie-thumbnails">
<h2>Movies</h2>
<div class="thumbnail-grid" id="thumbnail-grid">
<!-- Thumbnails dynamically loaded here -->
</div>
</section>
<footer>
<p>© 2024 MovieWeb. All rights reserved.</p>
</footer>
<script src="selection.js"></script>
</body>
</html>