-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (96 loc) · 4.05 KB
/
Copy pathindex.html
File metadata and controls
102 lines (96 loc) · 4.05 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
<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>Netflix India - Watch TV Shows Online, Watch Movies Online</title>
<link rel="stylesheet" href="css/styles.css">
<!-- <script src="https://kit.fontawesome.com/047a3bb86a.js" crossorigin="anonymous"></script> -->
</head>
<body>
<header class="showcase">
<div class="showcase-top">
<div class="container">
<img src="img/logo.png" alt="Netflix logo">
<div class="dropdown">
<i class="fa fa-solid fa-globe fa-sm"></i>
<select class="lang" name="lang" id="lang">
<option value="English">English</option>
<option value="Hindi">Hindi</option>
</select>
<img src="./img/drop-down.png" alt="Drop down icon">
</div>
<button href="#" class="btn btn-sm">Sign In</button>
</div>
</div>
<div class="showcase-content">
<div class="container form">
<h1>Unlimited movies, TV shows and more.</h1>
<h2>Watch anywhere. Cancel anytime.</h2>
<p>Ready to watch? Enter your email to create or restart your membership.</p>
</div>
<div class="email-form">
<form action="#">
<input type="text" name="email" id="email" placeholder="Email address">
<button>Get Started<i class="icon-right fa fa-thin fa-chevron-right"></i></button>
</form>
</div>
</div>
</header>
<section class="tab-1">
<div class="tab-1-content">
<div class="video-container">
<div class="card-title">
<h1>Enjoy on your TV.</h1>
<h2>Watch on smart TVs, PlayStation, Xbox, Chromecast, Apple TV, Blu-ray players and more.</h2>
</div>
<div class="card-img">
<img src="img/tv.png" alt="Card-img-containing-video">
<div class="card-img-video">
<video src="./img/video-tv-in-0819.mp4" autoplay muted loop>
</video>
</div>
</div>
</div>
</div>
</section>
<section class="tab-2">
<div class="tab-2-content">
<div class="downloading-container">
<div class="card-title">
<h1>Download your shows to watch offline.</h1>
<h2>Save your favourites easily and always have <br> something to watch.</h2>
</div>
<div class="card-img">
<img src="./img/downloading.jpg" alt="Download your shows">
<div class="loader">
<div class="download-img">
<img src="./img/stranger-things-theme.png" alt="">
</div>
<div class="download-series">
<h2>Stranger Things</h2>
<p>Downloading...</p>
</div>
<div class="download-gif">
<img src="./img/download-icon.gif" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<section class="tab-3">
<div class="tab-3-content">
<div class="watch-anywhere">
<div class="watch-anywhere-content">
<h1>Watch everywhere.</h1>
<h2>Stream unlimited movies and TV shows on your phone, tablet, laptop, and TV.</h2>
</div>
<div class="watch-anywhere-img">
<img src="./img/tv.png" alt="">
</div>
</div>
</div>
</section>
</body>
</html>