forked from JalJeevanPvtLtd/Netflix-India-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (100 loc) · 4.31 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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">
<script src="https://kit.fontawesome.com/0a13412159.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/header.css">
<link rel="stylesheet" href="css/story-card.css">
<link rel="stylesheet" href="css/flex-description.css">
<link rel="icon" type="image/x-icon" href="/images/Netflix-fevicon.png">
<title>Netflix India – Watch TV Shows Online, Watch Movies Online</title>
</head>
<body>
<!-- header and front page -->
<div id="background-div">
<div id="header-div">
<div class="image-logo">
<a href="index.html"><img src="/images/Netflix-logo.png" alt="Netflix-logo"></a>
</div>
<div class="header-right-div">
<div class="language-option">
<select name="website-language" id="language">
<option value="english">English</option>
<option value="hindi">हिन्दी</option>
<option value="marathi">मराठी</option>
<option value="urdu">اردو</option>
<option value="gujrati">પસાર</option>
<option value="tamil">தமிழ்</option>
<option value="telugu">తెలుగు</option>
</select>
</div>
<div class="sign-in-btn">
<button>Sign In</button>
</div>
</div>
<div class="flex-description">
<div id="description-div">
<h1>Unlimited movies, TV shows and more.</h1>
<h3>Watch anywhere. Cancel anytime.</h3>
<h5>Ready to watch? Enter your email to create or restart your membership.</h5>
<div class="email-div">
<input type="email" name="email" id="email" placeholder="Email Address" required>
<button class="get-started-btn">Get Started <i class="fa-solid fa-angle-right"></i></button>
</div>
</div>
</div>
</div>
</div>
<!-- story-1 -->
<div id="first-story-card">
<div class="story-flex-div">
<div class="story-content">
<h1>Enjoy on your TV.</h1>
<p>Watch on smart TVs, PlayStation, Xbox, Chromecast, Apple TV, Blu-ray players and more.</p>
</div>
<div class="story-image">
<img src="/images/tv.png" alt="tv image">
</div>
</div>
</div>
<!-- story-2 -->
<div id="first-story-card">
<div class="story-flex-div">
<div class="story-image">
<img src="/images/mobile.jpg" alt="mobile image">
</div>
<div class="story-content">
<h1>Download your shows to watch offline.</h1>
<p>Save your favourites easily and always have something to watch.</p>
</div>
</div>
</div>
<!-- story-3 -->
<div id="first-story-card">
<div class="story-flex-div">
<div class="story-content">
<h1>Watch everywhere.</h1>
<p>Stream unlimited movies and TV shows on your phone, tablet, laptop, and TV.</p>
</div>
<div class="story-image">
<img src="/images/story-3.png" alt="tv image">
</div>
</div>
</div>
<!-- story-4 -->
<div id="first-story-card">
<div class="story-flex-div">
<div class="story-image">
<img src="/images/story-4.png" alt="mobile image">
</div>
<div class="story-content">
<h1>Create profiles for children.</h1>
<p>Send children on adventures with their favourite characters in a space made just for them—free with your membership.</p>
</div>
</div>
</div>
</body>
</html>