-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (104 loc) · 4.34 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
<!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">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="netflix-logo-icon-on-white-background-free-vector.webp" type="image/x-icon">
<title>Netflix</title>
</head>
<body>
<header class="showcase">
<div class="showcase-top">
<img src="logo.png" alt="Netflix Logo">
<a href="#" class="btn btn-rounded">Sign In</a>
</div>
<div class="showcase-content">
<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>
<input type="email" name="email" id="mail" placeholder="Email address">
<a href="#" class="btn btn-lg">Get Started ></a>
</div>
</header>
<section class="style-cards">
<div class="cards-0">
<div class="desc-0">
<h1>Enjoy on your TV.</h1>
<h3>Watch on smart TVs, PlayStation, Xbox, Chromecast, Apple TV, Blu-ray players and more.</h3>
</div>
<img src="tv.png" alt="Netflix TV">
<video src="1.m4v" class="video-1" autoplay="" playsinline="" muted="" loop="" ><source src="1.m4v" type="video/mp4"></video>
</div>
<div class="cards-1">
<img src="3.jpg" alt="Netflix Mobile">
<div class="desc-1">
<h1>Download your shows to watch offline.</h1>
<h3>Save your favourites easily and always have something to watch.</h3>
</div>
</div>
<div class="cards-2">
<div class="desc-2">
<h1>Watch everywhere.</h1>
<h3>Stream unlimited movies and TV shows on your phone, tablet, laptop, and TV.</h3>
</div>
<img src="4.png" alt="Device-Pile-In">
<video src="2.m4v" class="video-2" autoplay="" playsinline="" muted="" loop="" ><source src="2.m4v" type="video/mp4"></video>
</div>
<div class="cards-3">
<img src="kids.png" alt="Netflix Kids">
<div class="desc-3">
<h1>Create profiles for children.</h1>
<h3>Send children on adventures with their favourite characters in a space made just for them—free with your membership.</h3>
</div>
</div>
</section>
<section class="lastSec">
<div class="faq">
<h1>Frequently Asked Questions</h1>
<ul class="questions">
<li>What is Netflix?</li>
<li>How much does Netflix cost?</li>
<li>Where can i watch?</li>
<li>How do i cancel?</li>
<li>What can i watch on Netflix?</li>
<li>Is Netflix good for kids?</li>
</ul>
<p>Ready to watch? Enter your email to create or restart your membership.</p>
<div class="input">
<input type="email" name="email" placeholder="Email Address">
<a href="#" class="btn-rounded"><button>Get Started ></button></a>
</div>
</div>
</section>
<footer class="footer">
<p>Questions? Call 000-800-919-1694</p>
<div class="footer-cols">
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">Investor Relations</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Speed Test</a></li>
</ul>
<ul>
<li><a href="#">Help Centre</a></li>
<li><a href="#">Jobs</a></li>
<li><a href="#">Cookie Preferences</a></li>
<li><a href="#">Legal Notices</a></li>
</ul>
<ul>
<li><a href="#">Account</a></li>
<li><a href="#">Ways to Watch</a></li>
<li><a href="#">Corporate Information</a></li>
<li><a href="#">Only on Netflix</a></li>
</ul>
<ul>
<li><a href="#">Media Centre</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
</footer>
</body>
</html>