-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
80 lines (76 loc) · 3.49 KB
/
Copy pathindex.php
File metadata and controls
80 lines (76 loc) · 3.49 KB
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
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Poppins:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="images/favi.ico">
</head>
<body>
<!-- Header Section-->
<header>
<div class="nav">
<img class="logo" src="images/logo.png" alt="logo">
<a href="Login/index.php" target="_blank">
<button class="sign-in-btn">Sign In</button>
</a>
</div>
<div class="header-details">
<h1 class="main">Unlimited movies, TV shows and more.</h1>
<h1 class="subtitle">Watch anywhere. Cancel anytime.</h1>
<h1 class="subtitle" style="font-size:medium;">Ready to watch? Enter your email to create or restart your membership.</h1>
<div class="email-form">
<input class="email-input" style="font-family:'Poppins';" type="text" placeholder="Email address">
<button class="sign-in-btn lg-btn">Get Started ></button>
</div>
</div>
</header>
<!-- Content section 1-->
<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>
<!-- Content section 2-->
<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>
<br>
<h1 class="footer-text ti">Netflix India</h1>
</footer>
</body>
</html>