-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (105 loc) · 4.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
<!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">
<title>Netflix India – Watch TV Shows Online, Watch Movies Online </title>
</head>
<body>
<header class="showcase">
<div class="showcase-top">
<img src="./img/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="E-mail address">
<a href="#" class="btn btn-lg">Get Started ></a>
</div>
</header>
<section class="style-cards">
<div class="card-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="./img/tv.png" alt="netflix-tv">
<video class = "video-1" autoplay="" playsinline="" muted="" loop=""><source src= "./img/1.m4v" type="video/mp4"></video>
</div>
<div class="card-1">
<img src="./img/2.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="card-2">
<img src="./img/pc.png" alt="netflix-pc">
<video class = "video-2" autoplay="" playsinline="" muted="" loop=""><source src= "./img/2.m4v" type="video/mp4"></video>
<div class="desc-2">
<h1>Watch everywhere.</h1>
<h3>Stream unlimited movies and TV shows on your phone, tablet, laptop, and TV.</h3>
</div>
</div>
<div class="card-3">
<img src="./img/3.png" alt="netflix-tv">
<div class="desc-0">
<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-040-1843</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="#">Watch for Free</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="#">Legal Notice</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>
<li><a href="#">Netflix Originals</a></li>
</ul>
</div>
</footer>
</body>
</html>