-
Notifications
You must be signed in to change notification settings - Fork 14
/
selectingmultiplegenre.html
64 lines (55 loc) · 2.06 KB
/
selectingmultiplegenre.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
<!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">
<title>Streamixx | Selecting Multiple Genres</title>
<link rel="icon" type="image/x-icon" href="./Data/logo/LogoStreamMixx.png">
<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=Poppins:wght@200&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<script defer async src="./Data/videoscript/multiplegenre.js"></script>
<link rel="stylesheet" href="mutiplegenrelist.css">
</head>
<body>
<div class="topbar">
<div class="logo">
<a href="index.html#" class="logosite">
<img src="./Data/logo/LogoStreamMixx.png" alt="sitelogo" class="logosite">
<div class="streamixx">Streamixx</div></a>
</div>
<div class="top">
<div class="navbar">
<div class="home"><a href="index.html#">Home</a></div>
<div class="about"><a href="index.html#abse">About</a></div>
<div class="contact"><a href="index.html#contactus">Contact</a></div>
</div>
</div>
</div>
<div class="headline">
<h1>Select Your Type</h1>
</div>
<div id="button-container">
<button id="button1">Action</button>
<button id="button2">Comedy</button>
<button id="button3">Drama</button>
<button id="button4">Horror</button>
<button id="button5">Crime</button>
<button id="button6">Romance</button>
<button id="button7">Sci-Fi</button>
<button id="button8">Thriller</button>
</div>
<br>
<div class="merge-button">
<button id="merge-button">Get the List</button>
</div>
<div class="moviecontainer">
<div class="heading">You have Got</div>
<div class="genreselected"></div>
</div>
<br><br><br>
<ol class="result"></ol>
</body>
</html>