-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetflix.html
71 lines (65 loc) · 1.89 KB
/
netflix.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Netflix Clone</title>
<link rel="stylesheet" href="netflix.css">
<link rel="icon" href="netflix.svg">
</head>
<body>
<!-- Navigation Bar -->
<nav>
<div class="container">
<img src="netflix.svg" alt="Netflix Logo">
<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>
</ul>
</div>
</nav>
<!-- Main Content -->
<header class="hero">
<div class="container">
<h1>Watch unlimited movies & TV shows anytime, anywhere.</h1>
<p>Join now to enjoy all the content without any limits.</p>
<button>Sign Up</button>
</div>
</header>
<!-- Featured Movies/TV Shows Section -->
<section class="featured">
<div class="container">
<h2>Featured</h2>
<div class="movie-list">
<!-- Example movie cards -->
<div class="movie-card">
<img src="spider.jpg" alt="Movie 1">
</div>
<div class="movie-card">
<img src="bedhadak.jpg" alt="Movie 2">
</div>
<div class="movie-card">
<img src="tiger-3.jpg" alt="Movie 3">
</div>
</div>
</nav>
</div>
<div class=" card">
<img src="jumanji.jpg" alt="Movie 3">
<img src="tu-jhoothi-main-makkaar-movie-best-images.jpg" alt="Movie 3">
<img src="1l.jpeg" alt="Movie 3">
<img src="2l.jpg" alt="Movie 3">
<img src="3l.jpg" alt="Movie 3">
</div>
</section>
<!-- Footer -->
<footer>
<div class="containerr">
<p>© 2023 Your Name | Netflix Clone</p>
</div>
</footer>
</body>
</html>