-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (65 loc) · 2.6 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
<!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>Netflix</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<nav>
<img src="logo.png" alt="logo">
<div>
<button class="language-btn">English |<img src="./down-icon.png" alt=""></button>
<button >Sign</button>
</div>
</nav>
<div class="header-content">
<h1>Unlimited Movies,Tv shows and more.</h1>
<h3>Watch anywhere. Cancel anythime.</h3>
<p>Ready to watch? Enter your email to create or reastart your membership.</p>
<form class="email-signup">
<input type="email" placeholder="email-address" required><br>
<button type="submit" id="demo">Get started</button>
</form>
</div>
</div>
<div class="features">
<div class="row">
<div class="text-col">
<h2>Enjoy on your TV</h2>
<p>Watch on smart TVs,Playstaton,Xbox, Chromecast, Apple Tv, Blue-ray Players and more.</p>
</div>
<div class="img-col">
<img src="./feature-1.png" alt="">
</div>
<div class="row">
<div class="img-col">
<img src="./feature-2.png" alt="">
</div>
<div class="text-col">
<h2>Download your shows to watch offline</h2>
<p>Save your favourites easily and always have something to watch.</p>
</div>
<div class="row">
<div class="text-col">
<h2>Create profiles for children.</h2>
<p>Send children on adventures with their favourite characters</p>
</div>
<div class="img-col">
<img src="./feature-4.png" alt="">
</div>
<div class="row">
<div class="img-col">
<img src="./feature-3.png" alt="">
</div>
<div class="text-col">
<h2>Watch everywhere.</h2>
<p>Stream unlimited movies and Tv shows on your phone,tablet,laptop and TV.</p>
</div>
</div>
</div>
</body>
</html>