-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
201 lines (182 loc) · 5.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Netflix Nepal - Watch TV Shows Online, Watch Movies Online</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="main">
<nav>
<img src="assets/images/logo.svg" class="logo" alt="" />
<button class="btn-red">Sign In</button>
</nav>
<div class="flex-text">
<span>Unlimited movies, TV shows, and more</span>
<span>Watch anywhere. Cancel anytime.</span>
<span
>Ready to watch? Enter your email to create or restart your
membership.</span
>
</div>
<div class="email-box main-email-box">
<input type="email" placeholder="Email address" class="email" />
<button class="btn-red btn-large">Get Started ></button>
</div>
<div class="overlay"></div>
</div>
<div class="divider"></div>
<section class="first">
<div class="description">
<h1>Enjoy on your TV</h1>
<p>
Watch on Smart TVs, Playstation, Xbox, Chromecast, Apple TV, Blu-ray
players, and more.
</p>
</div>
<div class="secImg">
<img
src="assets/images/tv.png"
alt=""
/>
<video
src="assets/videos/tv-video.m4v"
muted
loop
autoplay
></video>
</div>
</section>
<div class="divider"></div>
<!-- SECOND -->
<section class="first second">
<div class="secImg">
<img
src="assets/images/mobile.jpg"
alt=""
/>
</div>
<div class="description">
<h1>Download your shows to watch offline</h1>
<p>Save your favorites easily and always have something to watch.</p>
</div>
</section>
<div class="divider"></div>
<!-- THIRD -->
<section class="first third">
<div class="description">
<h1>Watch everywhere</h1>
<p>
Stream unlimited movies and TV shows on your phone, tablet, laptop,
and TV.
</p>
</div>
<div class="secImg">
<img
src="assets/images/tv.png"
alt=""
/>
<video
src="assets/videos/tv-video-1.m4v"
autoplay
loop
muted
></video>
</div>
</section>
<div class="divider"></div>
<!-- FOURTH -->
<section class="first fourth">
<div class="secImg">
<img
src="assets/images/kids-account.png"
alt=""
/>
</div>
<div class="description">
<h1>Create profiles for kids</h1>
<p>
Send kids on adventures with their favorite characters in a space made
just for them—free with your membership.
</p>
</div>
</section>
<div class="divider"></div>
<section class="faq">
<h1>Frequently Asked Questions</h1>
<div class="question">
What is NetFlix? <img src="assets/images/plus.svg" alt="" />
</div>
<div class="question">
How much does Netflix cost? <img src="assets/images/plus.svg" alt="" />
</div>
<div class="question">
Where can I watch? <img src="assets/images/plus.svg" alt="" />
</div>
<div class="question">
How do I cancel? <img src="assets/images/plus.svg" alt="" />
</div>
<div class="question">
What can I watch on Netflix? <img src="assets/images/plus.svg" alt="" />
</div>
<div class="question">
Is Netflix good for kids? <img src="assets/images/plus.svg" alt="" />
</div>
<p>
Ready to watch? Enter your email to create or restart your membership.
</p>
<div class="email-box eb-second">
<input type="email" placeholder="Email address" class="email" />
<button class="btn-red btn-large">Get Started ></button>
</div>
</section>
<div class="divider"></div>
<!-- FOOTER -->
<footer>
<div class="footer">
<a href="/">Questions? Contact us.</a>
<div class="grid">
<div class="col">
<a href="/">FAQ</a>
<a href="/">Investor Relations</a>
<a href="/">Privacy</a>
<a href="/">Speed Test</a>
</div>
<div class="col">
<a href="/">Help Center</a>
<a href="/">Jobs</a>
<a href="/">Cookie Preferences</a>
<a href="/"> Legal Notices</a>
</div>
<div class="col">
<a href="/"> Account</a>
<a href="/"> Ways to Watch</a>
<a href="/"> Corporate Information</a>
<a href="/"> Only on Netflix</a>
</div>
<div class="col">
<a href="/">Media Center</a>
<a href="/">Terms of Use</a>
<a href="/">Contact Us</a>
</div>
</div>
<div class="selector">
<select name="lang" id="lang">
<option
lang="en"
label="English"
value="en-NP"
selected="English"
class="opt"
>
English ▼
</option>
</select>
</div>
<!-- country -->
<div class="country"><span>Netflix Nepal</span></div>
</div>
</footer>
</body>
</html>