-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
194 lines (153 loc) · 5.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>Netflix Clone</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css
">
</head>
<body>
<!-- this is hero-section -->
<div class="main-container">
<nav>
<img src="./logo.png" alt="">
<span>
<button class="lang-btn-1">
<i class="fa-solid fa-globe"></i>
English
<i class="fa-sharp fa-solid fa-caret-down"></i>
</button>
<button class="sign-btn">
Sign in
</button>
</span>
</nav>
<div class="text-section">
<h1>Unlimited movies, TV shows and more.</h1>
<br>
<h3>Watch anywhere. Cancel anytime.</h3>
<p>Ready to watch? Enter your email to create or restart your membership.
</p>
<form>
<input type="email" placeholder="Email address" id="#">
<button class="start-btn">Get started> </button>
</form>
</div>
</div>
<!-- this is tv-section -->
<section class="tv-section">
<div class="tv-text">
<h1>Enjoy on your TV.</h1>
<p>Watch on smart TVs, PlayStation, Xbox, Chromecast,<br> Apple TV, Blu-ray players and more.</p>
</div>
<div class="tv-image" id="tv">
<img id="tv-image" src="tv.png" alt="">
<video src="./pexels-gabby-k-5849599 (1).mp4" muted autoplay loop></video>
</div>
</section>
<!-- this is mobile-section -->
<section class="tv-section">
<div class="tv-image">
<img src="mobile-0819.jpg" alt="">
</div>
<div class="tv-text">
<h1>Download your shows <br> to watch offline.</h1>
<p>Save your favourites easily and always have something <br> to watch.</p>
</div>
</section>
<!-- this is device-section -->
<section class="tv-section">
<div class="tv-text">
<h1>Watch everywhere.</h1>
<p>Stream unlimited movies and TV shows on your <br> phone, tablet, laptop, and TV.</p>
</div>
<div class="tv-image" id="display">
<img id="tv-image-1" src="device-pile-in.png" alt="">
<video id="display-video" src="./Pexels Videos 1674470.mp4" muted autoplay loop></video>
</div>
</section>
<!-- this is kid-section -->
<section class="tv-section">
<div class="tv-image">
<img src="kids.png" alt="">
</div>
<div class="tv-text">
<h1>Create profiles for <br> children.</h1>
<p>Send children on adventures with their favourite <br> characters in a space made just for them—free with
<br> your membership</p>
</div>
</section>
<!-- this is faq-section -->
<section class="faq-section">
<h1>Frequently Asked Questions</h1>
<div class="questions">
<div class="text-question">
<h1>What is Netflix?</h1>
<h1>+</h1>
</div>
<div class="text-question">
<h1>How much does Netflix cost? </h1>
<h1>+</h1>
</div>
<div class="text-question">
<h1>Where can I Watch? </h1>
<h1>+</h1>
</div>
<div class="text-question">
<h1>How do I cancel? </h1>
<h1>+</h1>
</div>
<div class="text-question">
<h1>What can I watch on Netflix? </h1>
<h1>+</h1>
</div>
<div class="text-question">
<h1> Is Netflix good for kids? </h1>
<h1>+</h1>
</div>
<span class="subscribe">
<p>Ready to watch? Enter your email to create or restart your membership.</p>
<form>
<input id="email-2" type="email" placeholder="Email address">
<button class="start-btn">Get Started > </button>
</form>
</span>
</section>
<footer>
<p>Questions? Call <a href="#">000-800-919-1694</a> </p>
<div class="footer-links">
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">Account</a></li>
<li><a href="#">Jobs</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Only on Netflix</a></li>
</ul>
<ul>
<li><a href="#">Gift Card Terms</a></li>
<li><a href="#">Media Centre </a></li>
<li><a href="#">Ways to Watch</a></li>
<li><a href="#">Cookie Preferences</a></li>
<li><a href="#">Speed Test</a></li>
</ul>
<ul>
<li><a href="#"> Help Centre </a></li>
<li><a href="#"> Investor Relations</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Corporate Information</a></li>
<li><a href="#">Legal Notices </a></li>
</ul>
</div>
<button class="lang-btn-2">
<i class="fa-solid fa-globe"></i>
English
<span><i class="fa-sharp fa-solid fa-caret-down"></i></span>
</button>
<p class="copyright"><a href="#">Netflix India</a></p>
</footer>
</body>
</html>