-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
214 lines (169 loc) · 6.36 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<!DOCTYPE html>
<html>
<head>
<title>Netflix_Clone</title>
<link rel="stylesheet" href="style.css"
</head>
<body>
<div class="header">
<div class="left_section">
<img class="logo" src="images/logo.png">
</div>
<div class="right_section">
<button class="language_button" >English
<img class="down_arrow" src="images/down-icon.png"></button>
<button class="sign_in"> Sign In</button>
</div>
</div>
<div>
<p class="text_1">Unlimited movies, TV shows and more</p>
</div>
<div>
<p class="text_2">Watch anywhere. Cancel anytime.</p>
</div>
<div>
<p class="text_3">Ready to watch? Enter your email to create or restart your membership.</p>
</div>
<div class="search_bar">
<input class="search_button" type="text" placeholder="Email address">
<button class="sign_in"> Get Started ></button>
</div>
<div class="tv_row">
<div class="left_section_tv">
<div class="top_section_tv"> Enjoy on your TV</div>
<div class="bottom_section_tv">Watch on smart TVs, PlayStation, Xbox, Chromecast,
Apple TV, Blu-ray players and more.
</div>
</div>
<div class="right_section_tv">
<div class="tv">
<img src="images/tv.png">
<video controls autoplay loop class="video">
<source src="images/video1.m4v">
</video>
</div>
</div>
</div>
<div class="download">
<div class="left_section_download">
<img class="download_img" src="images/feature-2.png">
</div>
<div class="right_section_download">
<div class="top_section_download">
Download your shows to watch offline
</div>
<div class="bottom_section_download">
Save your favourites easily and always have something to watch.
</div>
</div>
</div>
<div class="mac">
<div class="left_section_mac">
<div class="top_section_mac">
Watch everywhere
</div>
<div class="bottom_section_mac">
Stream unlimited movies and TV shows on your phone, tablet, laptop, and TV.
</div>
</div>
<div class="right_section_mac">
<img class="mac_img" src="images/feature-3.png">
</div>
</div>
<div class="children">
<div class="left_section_children">
<img class="children_img" src="images/feature-4.png">
</div>
<div class="right_section_children">
<div class="top_section_children">
Download your shows to watch offline
</div>
<div class="bottom_section_children">
Save your favourites easily and always have something to watch.
</div>
</div>
</div>
<header class="faq"> Frequently Asked Questions </header>
<div class="faq_1">
<div class="faq_text">
What is Netflix
</div>
<div class="plus_icon" >
+
</div>
</div>
<div class="faq_1">
<div class="faq_text">
How much does Netflix cost?
</div>
<div class="plus_icon" >
+
</div>
</div>
<div class="faq_1">
<div class="faq_text">
Where can I watch?
</div>
<div class="plus_icon" >
+
</div>
</div>
<div class="faq_1">
<div class="faq_text">
How do I cancel?
</div>
<div class="plus_icon" >
+
</div>
</div>
<div class="faq_1">
<div class="faq_text">
What can I watch on Netflix?
</div>
<div class="plus_icon" >
+
</div>
</div>
<div class="faq_1">
<div class="faq_text">
Is Netflix good for kids?
</div>
<div class="plus_icon" >
+
</div>
</div>
<div class="search_bar">
<input class="search_button" type="text" placeholder="Email address">
<button class="sign_in"> Get Started ></button>
</div>
<header class="ready_to_watch"> Ready to watch? Enter your email to create or restart your membership.
</header>
<div class="footer_main">
<div class="left_footer">
<p class="footer_text"> FAQ</p>
<p class="footer_text"> Media Centre</p>
<p class="footer_text"> Ways to Watch</p>
<p class="footer_text"> Cookie Preferences</p>
<p class="footer_text"> Speed Test</p>
</div>
<div class="midle_footer">
<p class="footer_text"> Help Centre </p>
<p class="footer_text"> Investor Relations </p>
<p class="footer_text"> Terms of Use </p>
<p class="footer_text"> Corporate Information </p>
<p class="footer_text"> Legal Notices </p>
</div>
<div class="right_footer">
<p class="footer_text"> Account </p>
<p class="footer_text"> Jobs </p>
<p class="footer_text"> Privacy </p>
<p class="footer_text"> Contact Us</p>
<p class="footer_text"> Only on Netflix </p>
</div>
</div>
<button class="language_bottom_button" >English
<img class="down_arrow" src="images/down-icon.png">
</button>
<p class="Netflix_India"> Netflix India </p>
</body>
</html>