-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·52 lines (38 loc) · 1.49 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!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, shrink-to-fit=no">
<title>Video Club</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Anton" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header class="movies_header">
<div class="logo">Video Club</div>
<div class="movies_filters">
<div class="filter open">
<span class="fa fa-arrow-circle-o-down"></span>
<span class="btn_title">Filter by</span>
</div>
<div class="filter_container">
<label>Category</label>
<select id="categories">
<option selected value="all"> All Categories </option>
</select>
<label>Director</label>
<select id="directors">
<option selected value="all"> All directors </option>
</select>
</div>
</div>
</header>
<main class="movies_content">
</div>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>