-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (141 loc) · 6.76 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!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</title>
</head>
<body>
<header>
<div class="nav">
<a href="#"><img class="logo" src="/images/netflix.png" alt="Netflix Logo"></a>
<a href="sign-in.html"><div class="button sign-in">Sign In</div></a>
</div>
<div class="feature">
<h1>Unlimited movies, TV shows and more.</h1>
<h2>Watch anywhere. Cancel anytime.</h2>
<form class="optform">
<h3>Ready to watch? Enter your email to create or restart your membership.</h3>
<div class="input">
<input type="email" name="sign up" class="sign-up-form" placeholder="Email Address">
<a href="sign-up.html"><div class="button sign-up">Get Started ></div></a>
</div>
</form>
</div>
</header>
<div class="jumbotron">
<div>
<h1>Enjoy on your TV.</h1>
<h2>Watch on smart TVs, PlayStation, Xbox, Chromecast, Apple TV, Blu-ray players and more.</h2>
</div>
<img src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/misc/home-tv.jpg?raw=true" alt="tv-image">
</div>
<div class="jumbotron">
<img src="https://assets.nflxext.com/ffe/siteui/acquisition/ourStory/fuji/desktop/mobile-0819.jpg" alt="phone-image">
<div>
<h1>Download your shows to watch offline.</h1>
<h2>Save your favourites easily and always have something to watch.</h2>
</div>
</div>
<div class="jumbotron">
<div>
<h1>Watch everywhere.</h1>
<h2>Stream unlimited movies and TV shows on your phone, tablet, laptop, and TV.</h2>
</div>
<img src="https://github.com/AhmedTohamy01/React-Netflix-Clone/blob/master/public/images/misc/home-imac.jpg?raw=true"
alt="imac-image">
</div>
<div class="faq">
<h1>Frequently Asked Questions</h1>
<ul>
<li>
<button class="question q1">What is Netflix?</button>
<div class="answer q1">
Netflix is a streaming service that offers a wide variety of award-winning TV shows, movies, anime, documentaries and
more – on thousands of internet-connected devices.
<br>
<br>
You can watch as much as you want, whenever you want, without a single ad – all for one low monthly price. There's
always something new to discover, and new TV shows and movies are added every week!
</div>
</li>
<li>
<button class="question q2">How much does Netflix cost?</button>
<div class="answer q2">
Watch Netflix on your smartphone, tablet, Smart TV, laptop, or streaming device, all for one fixed monthly fee. Plans
range from ₹ 199 to ₹ 799 a month. No extra costs, no contracts.
</div>
</li>
<li>
<button class="question q3">Where can I watch?</button>
<div class="answer q3">
Watch anywhere, anytime, on an unlimited number of devices. Sign in with your Netflix account to watch instantly on the
web at netflix.com from your personal computer or on any internet-connected device that offers the Netflix app,
including smart TVs, smartphones, tablets, streaming media players and game consoles.
<br>
<br>
You can also download your favourite shows with the iOS, Android, or Windows 10 app. Use downloads to watch while you're
on the go and without an internet connection. Take Netflix with you anywhere.
</div>
</li>
<li>
<button class="question q4">How do I cancel?</button>
<div class="answer q4">
Netflix is flexible. There are no annoying contracts and no commitments. You can easily cancel your account online in
two clicks. There are no cancellation fees – start or stop your account anytime.
</div>
</li>
<li>
<button class="question q5">What can I watch on Netflix?</button>
<div class="answer q5">
Netflix has an extensive library of feature films, documentaries, TV shows, anime, award-winning Netflix originals, and
more. Watch as much as you want, anytime you want.
</div>
</li>
<li>
<button class="question q6">Is Netflix good for kids?</button>
<div class="answer q6">
The Netflix Kids experience is included in your membership to give parents control while kids enjoy family-friendly TV
shows and films in their own space.
<br>
<br>
Kids profiles come with PIN-protected parental controls that let you restrict the maturity rating of content kids can
watch and block specific titles you don’t want kids to see.
</div>
</li>
</ul>
<form class="optform">
<h3>Ready to watch? Enter your email to create or restart your membership.</h3>
<div class="input">
<input type="email" name="sign up" class="sign-up-form" placeholder="Email Address">
<a href="sign-up.html"><div class="button sign-up">Get Started ></div></a>
</div>
</form>
</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>
<script src="app.js"></script>
</body>
</html>