-
Notifications
You must be signed in to change notification settings - Fork 0
/
NETFLIX.html
71 lines (68 loc) · 2.54 KB
/
NETFLIX.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Netflix webside clone</title>
<link rel="stylesheet" href="NETFLIX.css">
</head>
<body>
<div class="and header">
<nav>
<img src="NETFLIX-contant-images/logo.png" class="logo">
<div>
<button class="language-button">English <img src="NETFLIX-contant-images/down-icon.png"></button>
<button>Sign In</button>
</div>
</nav>
<div class="hedder-contain">
<h1>Unlimited movies, TV shows and more</h1>
<h3>Watch anywhere. Cancel anytime.</h3>
<p>Ready to watch? Enter your email to create or restart your membership.</p>
<form class="email-sigh-up">
<input type="email" placeholder="Email address" required>
<button type="submit">Get Started</button>
</form>
</div>
</div>
<div class="features">
<div class="row">
<div class="text-color">
<h2>Enjoy on your TV</h2>
<p>Watch on smart TVs, PlayStation, Xbox, Chromecast, Apple TV, Blu-ray players and more.</p>
</div>
<div class="img-color">
<img src="NETFLIX-contant-images/feature-1.png">
</div>
</div>
<div class="row">
<div class="img-color">
<img src="NETFLIX-contant-images/feature-2.png">
</div>
<div class="text-color">
<h2>Download your shows to watch offline</h2>
<p>Save your favourites easily and always have something to watch.</p>
</div>
</div>
<div class="row">
<div class="text-color">
<h2>Watch everywhere</h2>
<p>Stream unlimited movies and TV shows on your phone, tablet, laptop, and TV.</p>
</div>
<div class="img-color">
<img src="NETFLIX-contant-images/feature-3.png">
</div>
</div>
<div class="row">
<div class="img-color">
<img src="NETFLIX-contant-images/feature-4.png">
</div>
<div class="text-color">
<h2>Create profiles for kids</h2>
<p>Send children on adventures with their favourite characters in a space made just for them—free with your membership</p>
</div>
</div>
</div>
</div>
</body>
</html>