-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
85 lines (77 loc) · 3.13 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
<!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">
<title>Netflix</title>
<link rel="icon" type="image/png" sizes="32x32" href="./images/netflixlog.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/netflixlog.png">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap" rel="stylesheet">
</head>
<body>
<!-- Nav bar -->
<header>
<nav class="navbar">
<img class="navbar" id="icon" src="./images/netflixlogo-removebg-preview.png" alt="Netflix" >
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Tv Shows</a></li>
<li><a href="#">Movies</a></li>
<li><a href="#">New & Popular</a></li>
<li><a href="#">My List</a></li>
<li><a href="#">Language</a></li>
<div class="search">
<input type="text" name="search" id="search" placeholder="Search">
</div>
</ul>
</nav>
</header>
<!-- Header -->
<div class="banner">
<div class="content">
<h1 class="title">Breaking Bad</h1>
<div class="buttons">
<button class="buttons_1">Play</button>
<button class="buttons_2">My List</button>
</div>
<div class="description">
<p>A high school chemist teacher is diagonsed with cancer. Not having proper money for treatments, he starts producing drugs. Catch this all time best masterpiece only on Netflix</p>
</div>
</div>
</div>
<!-- Netflix Originals -->
<div class=row1>
<h2>Netflix Originals</h2>
<div class ="row_posters_org">
<img src="./images/ds2.jpg" alt=""/>
<img src="./images/mh.webp" alt=""/>
<img src="./images/friends.jpg" alt=""/>
<img src="./images/lak.jpg" alt=""/>
<img src="./images/hoc.jpg" alt=""/>
<img src="./images/dn.webp" alt=""/>
<img src="./images/ns.jpg" alt=""/>
<img src="./images/mha.png" alt=""/>
<img src="./images/st2.jpg" alt="/>
</div>
</div>
<!-- Trending now -->
<div class=row>
<h2>Trending Now</h2>
<div class ="row_posters_tre">
<img src="./images/ds.jpg" alt=""/>
<img src="./images/friends.jpg" alt=""/>
<img src="./images/lak.jpg" alt=""/>
<img src="./images/hoc.jpg" alt=""/>
<img src="./images/dn.webp" alt=""/>
<img src="./images/ns.jpg" alt=""/>
<img src="./images/dn2.jpg" alt=""/>
<img src="./images/ns2.jpg" alt=""/>
<img src="./images/mha2.jpeg" alt=""/>
</div>
</div>
</body>
</html>