-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (65 loc) · 2.81 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
<!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>Devflix</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header section -->
<header>
<div class="nav">
<img class="logo" src="images/logo.png" alt="logo">
<button class="sign-in-btn" >Sign In</button>
</div>
<div class="header-details">
<h1 class="title">Unlimited movies, TV shows and more.</h1>
<h1 class="subtitle">Watch anywhere. Cancel anytime.</h1>
<h1 class="subtitle">Ready to watch? Enter your email to create or restart your membership.</h1>
<div class="email-form">
<input class="email-input" type="text" placeholder="Email Address">
<button class="sign-in-btn lg-btn" >Get Started ></button>
</div>
</div>
</header>
<!-- Content Section -->
<div class="content-section">
<div class="content-details">
<h1 class="title">Enjoy on your TV.</h1>
<h1 class="subtitle">Watch on smart TVs, PlayStation, Xbox, Chromecast, Apple TV, Blu-ray players and more.</h1>
</div>
<img class="content-image" src="images/content1.JPG" alt="section">
</div>
<div class="content-section reverse">
<div class="content-details">
<h1 class="title">Download your shows to watch offline.</h1>
<h1 class="subtitle">Save your favourites easily and always have something to watch.</h1>
</div>
<img class="content-image" src="images/content2.JPG" alt="section">
</div>
<!-- Footer Section -->
<footer>
<h1 class="footer-text">Questions? Call 000-800-040-1843</h1>
<div class="footer-options">
<h1 class="footer-link">FAQ</h1>
<h1 class="footer-link">Help Centre</h1>
<h1 class="footer-link">Account</h1>
<h1 class="footer-link">Media Centre</h1>
<h1 class="footer-link">Investor Relations</h1>
<h1 class="footer-link">Jobs</h1>
<h1 class="footer-link">Ways to Watch</h1>
<h1 class="footer-link">Terms of Use</h1>
<h1 class="footer-link">Privacy</h1>
<h1 class="footer-link">Cookie Preferences</h1>
<h1 class="footer-link">Corporate Information</h1>
<h1 class="footer-link">Contact Us</h1>
<h1 class="footer-link">Speed Test</h1>
<h1 class="footer-link">Legal Notices</h1>
<h1 class="footer-link">Only on Netflix</h1>
</div>
<h1 class="footer-text">Netflix India</h1>
</footer>
</body>
</html>