-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (104 loc) · 5.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="Local Netfllx-like">
<meta name="keywords" content="HTML,CSS,JavaScript,JSON">
<meta name="author" content="Cedric-M">
<title>NETFLLX</title>
<!-- CSS -->
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<title>NETFLLX</title>
</head>
<body>
<header>
<p>NETFLLX</p>
</header>
<div class="container">
<section id="row1">
<h1 class="sectionTitle">Films</h1>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="#">Movie 1</a>
</div>
<div class="examples">
<ul class="img-list">
<li class="image">
<a href="#">
<img id="box1" src="http://placehold.it/280x150" width="280" height="150" />
<span class="text-content"><span>Title Here...<br><br><i class="fa fa-4x fa-play-circle-o"></i><br><br><i class="fa fa-chevron-down" onclick="openNav()" aria-hidden="true"></i></span></span>
</a>
</li>
<li class="image">
<a href="#">
<img src="http://placehold.it/280x150" width="280" height="150" />
<span class="text-content"><span>Title Here...<br><br><i class="fa fa-4x fa-play-circle-o"></i><br><br><i class="fa fa-chevron-down" aria-hidden="true"></i></span></span>
</a>
</li>
<li class="image">
<a href="#">
<img src="http://placehold.it/280x150" width="280" height="150" />
<span class="text-content"><span>Title Here...<br><br><i class="fa fa-4x fa-play-circle-o"></i><br><br><i class="fa fa-chevron-down" aria-hidden="true"></i></span></span>
</a>
</li>
</ul>
</div>
</section>
<section id="row2">
<h1 class="sectionTitle">Series</h1>
<div class="examples">
<ul class="img-list">
<li class="image">
<a href="#">
<img src="http://placehold.it/280x150" width="280" height="150" />
<span class="text-content"><span>Title Here...<br><br><i class="fa fa-4x fa-play-circle-o"></i><br><br><i class="fa fa-chevron-down" aria-hidden="true"></i></span></span>
</a>
</li>
<li class="image">
<a href="#">
<img src="http://placehold.it/280x150" width="280" height="150" />
<span class="text-content"><span>Title Here...<br><br><i class="fa fa-4x fa-play-circle-o"></i><br><br><i class="fa fa-chevron-down" aria-hidden="true"></i></span></span>
</a>
</li>
<li class="image">
<a href="#">
<img src="http://placehold.it/280x150" width="280" height="150" />
<span class="text-content"><span>Title Here...<br><br><i class="fa fa-4x fa-play-circle-o"></i><br><br><i class="fa fa-chevron-down" aria-hidden="true"></i></span></span>
</a>
</li>
</ul>
</div>
</section>
<h1 class="sectionTitle">TV Shows</h1>
<div class="examples">
<ul class="img-list">
<li class="image">
<a href="#">
<img src="http://placehold.it/280x150" width="280" height="150" />
<span class="text-content"><i class="fa fa-chevron-up" aria-hidden="true"></i><br><br><i class="fa fa-4x fa-play-circle-o"></i><br><br>Title Here...</span></span>
</a>
</li>
<li class="image">
<a href="#">
<img src="http://placehold.it/280x150" width="280" height="150" />
<span class="text-content"><i class="fa fa-chevron-up" aria-hidden="true"></i><br><br><i class="fa fa-4x fa-play-circle-o"></i><br><br>Title Here...</span></span>
</a>
</li>
<li class="image">
<a href="#">
<img src="http://placehold.it/280x150" width="280" height="150" />
<span class="text-content"><i class="fa fa-chevron-up" aria-hidden="true"></i><br><br><i class="fa fa-4x fa-play-circle-o"></i><br><br>Title Here...</span></span>
</a>
</li>
</ul>
</div>
</div>
<!-- Javascript files -->
<script src="assets/js/script.js"></script>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
</body>
</html>