-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 1.34 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>IMDB Now Playing App</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" charset="utf-8" async="" src="main.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
</head>
<body>
<header>
<span id="kiss-logo" title="K.I.S.S. (Keep It Short & Simple)" onclick="toggle()">💋</span><h1>Now Playing</h1>
<!--<input type="search" placeholder="Filter by title ...">-->
<input type="range" min="0" max="10" value="3" step="0.5" class="slider" id="slider">
Min Rating: <b id="vote_average"></b>
<button id="toggleGenres" onclick="toggle()"><i class="fas fa-eye"></i> Show Genres</button>
<button id="filterResults"><i class="fas fa-check"></i> Filter</button>
<button id="resetFilters" onclick="resetFilters();"><i class="fas fa-redo"></i> RESET</button>
</header>
<form id="sidebar">
</form>
<content>
<div id="content">
</div>
<div id="errorDiv"></div>
</content>
</body>
</html>