-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexplore.html
101 lines (98 loc) · 4.46 KB
/
explore.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
<!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">
<link rel="stylesheet" href="styles.css">
<title>Netflix Frontend Clone - Explore</title>
</head>
<body>
<div class="header-container">
<div class="navigation">
<a href="index.html"><img class="logo" src="/images/netflix.png" alt="Netflix Logo"></a>
<p>Series</p>
<p>Films</p>
</div>
<div class="describe">
<h1>Watch Joker Now</h1>
<p>Forever alone in a crowd, failed comedian Arthur Fleck seeks connection as he walks the streets of Gotham City. Arthur wears two masks -- the one he paints for his day job as a clown, and the guise he projects in a futile attempt to feel like he's part of the world around him. Isolated, bullied and disregarded by society, Fleck begins a slow descent into madness as he transforms into the criminal mastermind known as the Joker.</p>
<div class="play-btn">Play</div>
</div>
</div>
<div class="gallery">
<div class="drama">
<h3>Drama</h3>
<div class="image">
<img src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/drama/fight-club/small.jpg?raw=true" alt="">
<img src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/drama/kings-speech/small.jpg?raw=true" alt="">
<img src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/drama/the-prestige/small.jpg?raw=true" alt="">
<img src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/drama/the-revenant/small.jpg?raw=true" alt="">
<img src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/drama/the-social-network/small.jpg?raw=true" alt="">
</div>
</div>
<div class="children">
<h3>Children</h3>
<div class="image">
<img
src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/children/despicable-me/small.jpg?raw=true"
alt="">
<img
src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/children/frozen/small.jpg?raw=true"
alt="">
<img
src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/children/hotel-transylvania/small.jpg?raw=true"
alt="">
<img
src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/children/spirited-away/small.jpg?raw=true"
alt="">
<img
src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/children/up/small.jpg?raw=true"
alt="">
</div>
</div>
<div class="thriller">
<h3>Drama</h3>
<div class="image">
<img
src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/thriller/a-quiet-place/small.jpg?raw=true"
alt="">
<img
src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/thriller/black-swan/small.jpg?raw=true"
alt="">
<img
src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/thriller/joker/small.jpg?raw=true"
alt="">
<img
src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/thriller/nightcrawler/small.jpg?raw=true"
alt="">
<img
src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/films/thriller/the-silence-of-the-lambs/small.jpg?raw=true"
alt="">
</div>
</div>
</div>
<footer>
<p>Questions? Call 000-800-040-1843</p>
<div class="links">
<ul>
<li>FAQ</li>
<li>Help Centre</li>
<li>Account</li>
<li>Media Centre</li>
<li>Investor Relations</li>
<li>Jobs</li>
<li>Ways to Watch</li>
<li>Terms of Use</li>
<li>Privacy</li>
<li>Cookie Preferences</li>
<li>Corporate Information</li>
<li>Contact Us</li>
<li>Speed Test</li>
<li>Legal Notices</li>
<li>Only on Netflix</li>
</ul>
</div>
</footer>
</body>
</html>