-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
205 lines (136 loc) · 5.53 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
<!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">
<title>Yash - Netflix India - Watch TV Shows Online, Watch Movies Online</title>
<!-- CSS FILE -->
<link rel="stylesheet" href="./css/styles.css">
<!-- Favicon -->
<link rel="icon" href="./content/favicon.ico">
</head>
<body>
<header>
<div class="navigation-bar">
<img class="logo" src="./content/netflix-logo.png" alt="netflix-logo">
<div class="nav-part">
<img class="lang-logo" src="./content/language-logo.png" alt="">
<select>
<option value="">English</option>
<option value="">हिंदी</option>
</select>
<button class="sign-in-btn"><a href="">Sign In</a></button>
</div>
</div>
<div class="background-div">
</div>
<div class="main-part">
<h1>Unlimited movies, TV shows and more.</h1>
<h2>Watch anywhere. Cancel anytime.</h2>
<p>Ready to watch? Enter your email to create or restart your membership.</p>
<div>
<input type="email" name placeholder="Email Address">
<button class="get-started-btn"><a href="">Get Started ></a></button>
</div>
</div>
</header>
<section class="first-section">
<div class="first-section-text">
<h1>Enjoy on your TV.</h1>
<p>Watch on Smart TVs,Playstation,Xbox,Chromecast,Apple TV,Blue-Ray Players and more.</p>
</div>
<div class="first-section-media">
<img class="img-video-1" src="./content/netflix-tv.png" alt="">
<video class="video-1" src="./content/video-1.m4v" muted autoplay></video>
</div>
</section>
<section class="second-section">
<div class="second-section-media">
<img class="img-2" src="./content/netflix-content-1.jpg" alt="">
<!-- <div class="download-div">
<img class="poster" src="./content/netflix-content-3.png" alt="">
<h3>Downloading....</h3>
<img class="gif" src="downlaod-icon.gif" alt="">
</div> -->
</div>
<div class="second-section-text">
<h1>Download your shows to watch offline.</h1>
<p>Save your Favourites easily and always have something to watch.</p>
</div>
</section>
<section class="third-section">
<div class="third-section-text">
<h1>Watch everywhere.</h1>
<p>Stream unlimited movies and TV shows on your phone,tablet,laptop or TV.</p>
</div>
<div class="third-section-media">
<img src="./content/netflix-device.png" alt="">
<video class="video-2" src="./content/video-2.m4v" autoplay muted></video>
</div>
</section>
<section class="fourth-section">
<div class="fourth-section-media">
<img class="img-video-2" src="./content/netflix-content-2.png" alt="">
</div>
<div class="fourth-section-text">
<h1>Create profiles for children.</h1>
<p>Send children on adventures with their favourite characters in a space made just for them—free with your membership.</p>
</div>
</section>
<div class="FAQ">
<div class="FAQ-h1">
<h1>Frequently Asked Questions</h1>
</div>
<div class="FAQ-questions">
<h2>What is Netflix?</h2>
<h2>How much does Netflix cost?</h2>
<h2>Where can I watch?</h2>
<h2>How do I cancel?</h2>
<h2>What can I watch on Netflix?</h2>
<h2>Is Netflix good for kids?</h2>
</div>
<p>Ready to watch? Enter your email to create or restart your membership.</p>
<div class="FAQ-email">
<input type="email" name placeholder="Email Address">
<button class="FAQ-btn"><a href="">Get Started ></a></button>
</div>
</div>
<footer>
<p>Questions? Call <a href="">000-800-040-1843</a> </p>
<div class="footer-li">
<ul>
<li><a href="">FAQ</a></li>
<li><a href="">Invester Relation</a></li>
<li><a href="">Privacy</a></li>
<li><a href="">Speed Test</a></li>
</ul>
<ul>
<li><a href="">Help Center</a></li>
<li><a href="">Jobs</a></li>
<li><a href="">Cookie Preferences</a></li>
<li><a href="">Legal Notices</a></li>
</ul>
<ul>
<li><a href="">Account</a></li>
<li><a href="">Ways to Watch</a></li>
<li><a href="">Corporate Information</a></li>
<li><a href="">Only on Netflix</a></li>
</ul>
<ul>
<li><a href="">Media Center</a></li>
<li><a href="">Terms of Use</a></li>
<li><a href="">Contact Us</a></li>
</ul>
</div>
<div>
<!-- <img class="footer-lang-logo" src="./content/language-logo.png" alt=""> -->
<select placeholder="lang-switcher">
<option value="">English</option>
<option value="">हिंदी</option>
</select>
</div>
<p>Netflix India</p>
</footer>
</body>
</html>