-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathh.html
103 lines (99 loc) · 4.3 KB
/
h.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CineNest - Your Streaming Hub</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">
<h1>CineNest</h1>
</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#movies">Movies</a></li>
<li><a href="#series">Series</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<div class="search-bar">
<input type="text" id="search" placeholder="Search for movies or series...">
</div>
</header>
<main>
<section id="home" class="hero">
<h2>Welcome to CineNest</h2>
<p>Your one-stop hub for streaming movies and series.</p>
</section>
<section id="movies" class="content">
<h2>Movies</h2>
<div class="grid">
<div class="card">
<a href="player.html?video=movie2.mp4&title=RRR">
<img src="images/movie2.jpg" alt="RRR Poster">
<p>RRR</p>
</a>
</div>
<div class="card">
<a href="player.html?video=movie3.mp4&title=Pushpa">
<img src="image/movie3.jpg" alt="Pushpa Poster">
<p>Pushpa</p>
</a>
</div>
<div class="card">
<a href="player.html?video=movie4.mp4&title=Devara">
<img src="image/movie4.jpg" alt="Devara Poster">
<p>Devara</p>
</a>
</div>
<div class="card">
<a href="player.html?video=movie5.mp4&title=One piece">
<img src="image/movie5.jpg" alt="One piece poster">
<p>One piece</p>
</a>
</a>
</div>
</div>
</section>
<section id="series" class="content">
<h2>Series</h2>
<div class="grid">
<div class="card">
<a href="player.html?video=movie1.mp4&title=RRR">
<img src="https://imgs.search.brave.com/7LXMDbXF3uJRS2x52agJGl1TDRLJC75GH-cpqxiIaOU/rs:fit:500:0:0:0/g:ce/aHR0cHM6Ly9maWxl/cy5wcm9rZXJhbGEu/Y29tL21vdmllcy9w/aWNzLzgwMC9ycnIt/bmV3LW1vdmllLXBv/c3Rlci0xMTU0Mzcu/anBn" alt="RRR Poster">
<p>RRR</p>
</a>
</div>
<div class="card">
<a href="player.html?video=movie2.mp4&title=Pushpa">
<img src="https://imgs.search.brave.com/WWifl0n7MWrcffvKsxtdcnrqR4PB3aD9MDcnYhdKUyo/rs:fit:500:0:0:0/g:ce/aHR0cHM6Ly9tLm1l/ZGlhLWFtYXpvbi5j/b20vaW1hZ2VzL00v/TVY1Qk9XRTRZV0V5/TmpZdE1XRmlOQzAw/TTJJekxXRTNaR010/TWpRMFpHRXlPV0kx/WWpBelhrRXlYa0Zx/Y0djQC5qcGc" alt="Pushpa Poster">
<p>Pushpa</p>
</a>
</div>
<div class="card">
<a href="player.html?video=movie3.mp4&title=Devara">
<img src="https://imgs.search.brave.com/6TWOuu4kBdi1pV4cg2AucLvk7d6-qR1yB66xYtUNiNw/rs:fit:500:0:0:0/g:ce/aHR0cHM6Ly9hc3Nl/dHNjZG4xLnBheXRt/LmNvbS9pbWFnZXMv/Y2luZW1hL0RldmFy/YS1taW4tZDI2ZmM4/NTAtZjY2ZS0xMWVk/LWIyMTItN2JiZWEy/N2E0Y2U5LmpwZz9m/b3JtYXQ9d2VicA" alt="Devara Poster">
<p>Devara</p>
</a>
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 CineNest. All Rights Reserved.</p>
</footer>
<!-- Video Modal -->
<div id="videoModal" class="modal">
<div class="modal-content">
<span id="closeModal" class="close">×</span>
<video id="videoPlayer" controls>
<source src="" type="videos/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<script src="j.js"></script>
</body>