-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetflix.html
155 lines (118 loc) · 4.29 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
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
<!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 Landing Page</title>
<link rel="stylesheet" href="./css/netflix.css">
</head>
<body>
<header>
<div class="icon">
<img src="" class="logo">
<a href=""><button class="signIn">Sign In</button></a>
</div>
<div class="text">
<h1 class="bold">Unlimited movies, TV <br> shows, and more.</h1>
<p>Watch anywhere. Cancel anytime.</p><br>
<p class="small">Ready to watch? Enter your email to create or restart your membership.</p><br>
<a href=""><input type="email" placeholder="Email address"><button class="start">Get Started</button></a>
</div>
</header>
<section class="mid">
<div class="text">
<h1>Enjoy on your TV.</h1>
<p>Watch on Smart TVs, Playstation, Xbox, <br> Chromecast, Apple TV, Blu-ray players, and <br> more.</p>
</div>
<div class="img">
<img src="../Netflix/img/tv.png" alt="">
</div>
</section>
<section class="stranger">
<div class="img">
<img src="../Netflix/img/mobile-0819.jpg">
</div>
<div class="text">
<h1>Download your shows to watch offline.</h1>
<p>Save your favorites easily and always have <br> something to watch.</p>
</div>
</section>
<section class="watch">
<div class="text">
<h1>Watch everywhere.</h1>
<p>Stream unlimited movies and TV shows on <br> your phone, tablet, laptop, and TV.</p>
</div>
<div class="img">
<img src="../Netflix/img/mobile-0819.jpg">
</div>
</section>
<section class="create">
<div class="img">
<img src="../Netflix/img/mobile-0819.jpg">
</div>
<div class="text">
<h1>Create profiles for kids.</h1>
<p>Send kids on adventures with their favorite <br> characters in a space made just for them— <br> free with your membership.</p>
</div>
</section>
<section class="end">
<h1>Frequently Asked Questions</h1>
<div class="ajuju">
<h4> much does Netflix cost?</h4>
<h6>+</h6>
</div>
<div class="ajuju">
<h4>Where can I watch?</h4>
<h6>+</h6>
</div>
<div class="ajuju">
<h4>How do I cancel?</h4>
<h6>+</h6>
</div>
<div class="ajuju">
<h4>What can I watch on Netflix?</h4>
<h6>+</h6>
</div>
<div class="ajuju">
<h4>Is Netflix good for kids?</h4>
<h6>+</h6>
</div>
<div class="text">
<p class="small">Ready to watch? Enter your email to create or restart your membership.</p><br>
<a href=""><input type="email" placeholder="Email address"><button class="start">Get Started</button></a>
</div>
</section>
<footer>
<div class="foot">
<a href="#"><h3>Questions? Contact us.</h3></a>
</div>
<br>
<div class="a">
<div class="links">
<a href="#"><p>FAQ</p></a>
<a href="#"><p>Investor Relations</p></a>
<a href="#"><p>Privacy</p></a>
<a href="#"><p>Speed Test</p></a>
</div>
<div class="links">
<a href="#"><p>Help Center</p></a>
<a href="#"><p>Jobs</p></a>
<a href="#"><p>Cookie Preferences</p></a>
<a href="#"><p>Legal Notices</p></a>
</div>
<div class="links">
<a href="#"><p>Account</p></a>
<a href="#"><p>Ways to Watch</p></a>
<a href="#"><p>Corporate Information</p></a>
<a href="#"><p>Only on Netflix</p></a>
</div>
<div class="links">
<a href="#"><p>Media Center</p></a>
<a href="#"><p>Terms of Use</p></a>
<a href="#"><p>Contact Us</p></a>
</div>
</div>
</footer>
</body>
</html>