-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
143 lines (127 loc) · 4.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Netflix Clone</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main">
<nav>
<span><img src="Assets/logo.svg" alt=""></span>
<div class="nav_right">
<select class="btn lang" name="btn Language" id="lan">
<option value="en-IN">English</option>
<option value="hi-IN">हिन्दी</option>
</select>
<button class="btn btn-red-si">Sign In</button>
</div>
</nav>
<div class="opbox"></div>
<div class="maintxt">
<span>Enjoy big movies, hit series and more from ₹ 149.</span>
<span>Join today. Cancel anytime.</span>
<span>Ready to watch? Enter your email to create or restart your membership.</span>
<div class="mail_gs">
<input type="text" placeholder="Email Address">
<button class="btn btn-red-gs">Get Started ></button>
</div>
</div>
</div>
<div class="seperator"></div>
<section class="first_sec">
<div class="first_sec_txt">
<span>Enjoy on your TV</span>
<span>Watch on smart TVs, PlayStation, Xbox, Chromecast, Apple TV, Blu-ray players and more.</span>
</div>
<div class="first_sec_img">
<img src="Assets/images/video1.png" alt="">
<video src="Assets/videos/video1.m4v" autoplay loop muted></video>
</div>
</section>
<div class="seperator"></div>
<section class="first_sec">
<div class="first_sec_img">
<img src="Assets/images/mobile-0819.jpg" alt="">
</div>
<div class="first_sec_txt">
<span>Download your shows to watch offline</span>
<span>Save your favourites easily and always have something to watch.</span>
</div>
</section>
<div class="seperator"></div>
<section class="first_sec">
<div class="first_sec_txt">
<span>Watch everywhere</span>
<span>Stream unlimited movies and TV shows on your phone, tablet, laptop, and TV.</span>
</div>
<div class="first_sec_img">
<img src="Assets/images/video2.png" alt="">
<video class="vdo2" src="Assets/videos/video2.m4v" autoplay loop muted></video>
</div>
</section>
<div class="seperator"></div>
<section class="first_sec">
<div class="first_sec_img">
<img src="Assets/images/child.png" alt="">
</div>
<div class="first_sec_txt">
<span>Create profiles for kids</span>
<span>Send children on adventures with their favourite characters in a space made just for them—free
with your membership.</span>
</div>
</section>
<div class="seperator"></div>
<section class="faqs">
<h2>Frequently Asked Questions</h2>
<div class="faq_box">
<span>What is Netflix?</span>
<img src="Assets/plus.svg" alt="plus">
</div>
<div class="faq_box">
<span>How much does Netflix cost?</span>
<img src="Assets/plus.svg" alt="plus">
</div>
<div class="faq_box">
<span>Where can I watch?</span>
<img src="Assets/plus.svg" alt="plus">
</div>
<div class="faq_box">
<span>How do I cancel?</span>
<img src="Assets/plus.svg" alt="plus">
</div>
<div class="faq_box">
<span>What can I watch on Netflix?</span>
<img src="Assets/plus.svg" alt="plus">
</div>
<div class="faq_box">
<span>Is Netflix good for kids?</span>
<img src="Assets/plus.svg" alt="plus">
</div>
</section>
<div class="seperator"></div>
<footer>
<div class="final">
<div class="que">Questions? Call 000-800-919-1694</div>
<div class="footer">
<a href="">FAQ</a>
<a href="">Help Centre</a>
<a href="">Account</a>
<a href="">Media Centre</a>
<a href="">Investor Relations</a>
<a href="">Jobs</a>
<a href="">Ways to Watch</a>
<a href="">Terms of Use</a>
<a href="">Privacy</a>
<a href="">Cookie Preferences</a>
<a href="">Corporate Information</a>
<a href="">Contact Us</a>
<a href="">Speed Test</a>
<a href="">Legal Notices</a>
<a href="">Only on Netflix</a>
</div>
</div>
</footer>
</body>
</html>