-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (110 loc) · 4.63 KB
/
Copy pathindex.html
File metadata and controls
111 lines (110 loc) · 4.63 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Netflix India- Watch TV Shows Online, Watch Movies Online</title>
<link rel="stylesheet" href="style.css"></link>
<script src="https://kit.fontawesome.com/9d053f8d91.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<nav class="navbar">
<div class="navbar_netflix">
<img src="assets/Logo.png" alt="Netflix" class="netflix_logo">
</div>
<div class="navbar_nav_items">
<div class="nav_item">
<div class="dropdown_container">
<i class="fa-solid fa-globe"></i>
<select name="languages" id="languageSelect" class="language_drop_down">
<option value="english" selected>English</option>
<option value="hindi">Hindi</option>
</select>
</div>
</div>
<div class="nav_item">
<button class="signin_button">Sign In</button>
</div>
</div>
</nav>
</header>
<main>
<section class="hero">
<div class="hero_bg_image_container">
<img src="assets/back.jpg" alt="background image" class="hero_bg_image">
</div>
<div class="hero_bg_overlay"></div>
<div class="hero_card">
<h1 class="hero_title">Unlimited movies, TV shows and more</h1>
<br>
<h2 class="hero_subtitle">Watch anywhere. Cancel anytime.</h2>
<br>
<p class="hero_description"><nobr>Ready to watch? Enter your email to create or restart your membership.</nobr></p>
<br>
<nobr ><input type="email" class="email" placeholder="Email Address"><button class="get_started">Get Started <i class="fa-solid fa-chevron-right"></i></button></nobr>
</div>
</section>
<section class="style-cards">
<div class="card-1">
<div class="desc-1">
<h1>Enjoy on your TV</h1><br>
<h3>Watch on smart TVs, PlayStation, Xbox, Chromecast, Apple TV, Blu-ray players and more.</h3>
</div>
<img src="assets/tv.png" alt="tv">
<video class="video-1"src="assets/video-tv-in-0819.m4v" autoplay="" playsinline="" muted="" loop="" type="video/mp4"></video>
</div>
<div class="card-2">
<img src="assets/desc-2.jpg" alt="show">
<div class="desc-2">
<h1>Download your <br> shows to watch <br>offline</h1><br>
<h3>Save your favourites easily and always have <br>something to watch.</h3>
</div>
</div>
<div class="card-3">
<div class="desc-3">
<h1>Watch everywhere</h1><br>
<h3>Stream unlimited movies and TV shows on your <br>phone, tablet, laptop, and TV.</h3>
</div>
<img src="assets/desc-3.png" alt="tv">
<video class="video-1" src="/assets/video-devices-in.m4v" autoplay="" playsinline="" muted="" loop="" type="video/mp4"></video>
</div>
<div class="card-4">
<img src="assets/Desc-4.png" alt="Childern_image">
<div class="desc-4">
<h1>Create profiles for <br> kids</h1><br>
<h3>Send children on adventures with their favourite <br>characters in a space made just for them—free with <br>your membership.</h3>
</div>
</div>
</section>
</main>
<footer class="footer">
<p>Questions? Call 000-800-919-1694</p>
<div class="footer-columns">
<ul>
<li>FAQ</li>
<li>Account</li>
<li>Investor Relations</li>
<li>Ways to Watch</li>
</ul>
<ul>
<li>Help Centre</li>
<li>Media Centre</li>
<li>Jobs</li>
<li>Terms of Use</li>
</ul>
<ul>
<li>Privacy</li>
<li>Corporate Information</li>
<li>Speed Test</li>
<li>Only on Netflix</li>
</ul>
<ul>
<li>Cookie Preferences</li>
<li>Contact Us</li>
<li>Legal Notices</li>
</ul>
</div>
</footer>
</body>
</html>