-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (48 loc) · 2.03 KB
/
index.html
File metadata and controls
55 lines (48 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Netflix India - Clone</title>
<link rel="icon" href="contents/netflix-logo-N.svg">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/85a51766c8.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="container center">
<!-- Navbar-------------------- -->
<nav>
<img src="./contents/netflix-logo.svg" alt="logo" class="logo">
<div class="nav-right">
<div class="language center"><i class="fa-solid fa-globe" style="color: #ffffff;"></i>
<select id="language center">
<option value="english">English</option>
<option value="hindi">Hindi</option>
</select>
</div>
<div class="sign-in center">Sign In</div>
</div>
</nav>
<!-- content-------- -->
<div class="container-content">
<p class="c1-t1 text1">The biggest Indian hits. Ready to watch here from ₹ 149.</p>
<p class="c1-t2 text2">Join today. Cancel anytime.</p>
<p class="c1-t3 text2">Ready to watch? Enter your email to create or restart your membership.</p>
<div class="email-div">
<input type="email" placeholder="Email address" id="email-input">
<span id="email-submit" class="center">
Get Started
</span>
</div>
</div>
</div>
<div class="container2">
<p class="c2-t1 text1">Enjoy on your TV</p>
<p class="c2-t2 text2">Watch on smart TVs, PlayStation, Xbox, Chromecast, Apple TV, Blu-ray players and more.</p>
<div class="c2-tv-div">
<!-- <img src="contents/tv1.bmp" alt=""> -->
</div>
</div>
<script src="main.js"></script>
</body>
</html>