-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (67 loc) · 2.65 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
<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">
<link rel="stylesheet" href="styles.css">
<title>Netflix Clone</title>
</head>
<body>
<div class="mainContainer">
<div class="navContainer">
<div class="logoImg">
<img src="imgVideo/logo.png">
</div>
<div class="nav-head">
<select name="" class="navLang">
<option value="">English</option>
<option value="">Hindi</option>
</select>
<button>Sign In</button>
</div>
</div>
<div class="dataConatiner">
<div class="infoDeatils">
<h1>Unlimited movies, TV<br>shows and more.</h1>
<h2>Watch anywhere. Cancel anytime.</h2>
<h3>Ready to watch? Enter your email to create or restart your membership.</h3>
</div>
<div class="inputMail">
<input type="email" placeholder="Email address">
<button>Get Started ></button>
</div>
</div>
</div>
<!-- border between two box/Conatiner -->
<div class="border"></div>
<!-- Enjoy on your tv block -->
<div class="displayBlock1">
<div class="infoDeatils1">
<h1>Enjoy on your TV.</h1>
<h2>Watch on smart TVs, PlayStation, Xbox,<br>Chromecast, Apple TV, Blu-ray players and<br>more.</h2>
</div>
<div class="imgBox1">
<img src="imgVideo/img-2.png" class="img1" > <!-- img which has to be highlighted -->
<video src="imgVideo/video-tv-in-0819.m4v" autoplay playsinline muted loop></video> <!-- video which is being played upon image -->
</div>
</div>
<div class="border"></div>
<!-- Stranger things Block -->
<div class="displayBlock2">
<div class="imgBox2">
<img src="imgVideo/img-3.png" class="img2" >
<div class="strangerBox">
<img src="imgVideo/strangerthings.png" alt="">
<div class="strangerText">Stranger Things</div>
<div class="strangerDownload">Downloading...</div>
<div class="downloadGif"></div>
</div>
</div>
<div class="infoDeatils2">
<h1>Download your shows<br>to watch offline.</h1>
<h2>Save your favourites easily and always have<br>something to watch.</h2>
</div>
</div>
<div class="border"></div>
</body>
</html>