-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMovie.html
More file actions
286 lines (259 loc) · 9.28 KB
/
Copy pathMovie.html
File metadata and controls
286 lines (259 loc) · 9.28 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cinema Scope</title>
<style>
/* Global styles */
body {
background-color: black;
color: white;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
/* Header style */
header {
display: flex;
align-items: center;
justify-content: center;
padding: 10px 20px;
background-color: #333; /* Background for the title */
}
header h1 {
color: yellow;
font-family: "Impact", "Georgia", serif; /* Bold title font */
font-size: 48px;
margin: 0;
text-transform: uppercase;
padding: 10px; /* Adds some padding inside the background */
}
/* HD Movies & Series section */
.hd-section {
display: flex;
align-items: center;
margin-top: 20px;
padding: 0 20px;
}
.movie-option {
padding: 10px 20px;
border: 2px solid white;
border-radius: 5px;
font-size: 14px;
background-color: #333;
color: white;
cursor: pointer;
}
.movie-option:hover {
background-color: yellow;
color: black;
}
.left-control {
order: 1; /* Hollywood button on the left */
margin-right: auto;
}
.right-control {
order: 3; /* Bollywood button on the right */
margin-left: auto;
}
.hd-section h2 {
order: 2; /* Keeps HD Movies & Series centered */
flex-grow: 1; /* Pushes buttons to sides */
color: #32CD32; /* Green for HD Movies & Series */
margin: 0;
font-size: 24px;
text-align: center;
}
/* Movie grid */
.movie-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin: 20px;
}
.movie-card {
width: 200px;
background-color: #444;
border-radius: 10px;
overflow: hidden;
text-align: center;
}
.movie-title {
padding: 10px;
background-color: #333;
color: yellow; /* Original movie title color */
}
.movie-card img {
width: 100%;
height: auto;
}
/* Footer styles */
footer {
background-color: #222;
padding: 20px;
text-align: center;
color: white;
margin-top: 20px;
}
footer p {
margin: 5px 0;
font-size: 14px;
}
footer p.colored {
font-size: 18px;
color: yellow; /* Yellow color for "Cinema Scope -" */
font-weight: bold;
}
footer a {
color: #00BFFF; /* Deep sky blue for links */
text-decoration: none;
font-size: 14px;
}
footer a:hover {
text-decoration: underline;
}
</style>
</head>
<body onload="showAllMovies()">
<!-- Header -->
<header>
<h1>Cinema Scope</h1>
</header>
<!-- HD Movies & Series Section -->
<div class="hd-section">
<!-- Left: Hollywood Movie Option -->
<div class="movie-option left-control" onclick="filterMovies('Hollywood')">Hollywood Movies</div>
<!-- Center: HD Movies & Series Title -->
<h2>HD Movies & Series</h2>
<!-- Right: Bollywood Movie Option -->
<div class="movie-option right-control" onclick="filterMovies('Bollywood')">Bollywood Movies</div>
</div>
<!-- Movie Grid -->
<div class="movie-grid">
<!-- Hollywood Movies (1–8) -->
<div class="movie-card hollywood">
<div class="movie-title">Deadpool & Wolverine</div>
<a href="./Links/link_1.html">
<img src="./Images/movie1.jpg" alt="Deadpool & Wolverine">
</a>
</div>
<div class="movie-card hollywood">
<div class="movie-title">John Wick 4</div>
<a href="./Links/link_2.html">
<img src="./Images/movie2.jpg" alt="John Wick 4">
</a>
</div>
<div class="movie-card hollywood">
<div class="movie-title">Far from Home</div>
<a href="./Links/link_3.html">
<img src="./Images/movie3.jpg" alt="Far from Home">
</a>
</div>
<div class="movie-card hollywood">
<div class="movie-title">Avengers Endgame</div>
<a href="./Links/link_4.html">
<img src="./Images/movie4.jpg" alt="Avengers Endgame">
</a>
</div>
<div class="movie-card hollywood">
<div class="movie-title">Fast and Furious 9</div>
<a href="./Links/link_5.html">
<img src="./Images/movie5.jpg" alt="Fast and Furious 9">
</a>
</div>
<div class="movie-card hollywood">
<div class="movie-title">Breaking Bad</div>
<a href="./Links/link_6.html">
<img src="./Images/movie6.jpg" alt="Breaking Bad">
</a>
</div>
<div class="movie-card hollywood">
<div class="movie-title">The Boys</div>
<a href="./Links/link_7.html">
<img src="./Images/movie7.jpg" alt="The Boys">
</a>
</div>
<div class="movie-card hollywood">
<div class="movie-title">Mission Impossible</div>
<a href="./Links/link_8.html">
<img src="./Images/movie8.jpg" alt="Mission Impossible">
</a>
</div>
<!-- Bollywood Movies (9–16) -->
<div class="movie-card bollywood">
<div class="movie-title">Mirzapur</div>
<a href="./Links/link_9.html">
<img src="./Images/movie9.jpg" alt="Mirzapur">
</a>
</div>
<div class="movie-card bollywood">
<div class="movie-title">Pushpa: The Rise</div>
<a href="./Links/link_10.html">
<img src="./Images/movie10.jpg" alt="Pushpa: The Rise">
</a>
</div>
<div class="movie-card bollywood">
<div class="movie-title">K.G.F: Chapter 1</div>
<a href="./Links/link_11.html">
<img src="./Images/movie11.jpg" alt="K.G.F: Chapter 1">
</a>
</div>
<div class="movie-card bollywood">
<div class="movie-title">Animal</div>
<a href="./Links/link_12.html">
<img src="./Images/movie12.jpg" alt="Animal">
</a>
</div>
<div class="movie-card bollywood">
<div class="movie-title">The Family Man</div>
<a href="./Links/link_13.html">
<img src="./Images/movie13.jpg" alt="The Family Man">
</a>
</div>
<div class="movie-card bollywood">
<div class="movie-title">Kalki 2898 AD</div>
<a href="./Links/link_14.html">
<img src="./Images/movie14.jpg" alt="Kalki 2898 AD">
</a>
</div>
<div class="movie-card bollywood">
<div class="movie-title">Farzi</div>
<a href="./Links/link_15.html">
<img src="./Images/movie15.jpg" alt="Farzi">
</a>
</div>
<div class="movie-card bollywood">
<div class="movie-title">Scam 1992</div>
<a href="./Links/link_16.html">
<img src="./Images/movie16.jpg" alt="Scam 1992">
</a>
</div>
</div>
<!-- Footer -->
<footer>
<p class="colored">Cinema Scope -</p>
<p>This is the official site for downloading Bollywood and Hollywood movies and series. It offers a huge collection of the latest movies and series for free. <br> Enjoy fast, secure downloads in various resolutions like 480p, 720p, and 1080p, ensuring a perfect fit for your device and internet speed. <br> We provide regular updates with the latest releases, a user-friendly interface, and carefully categorized content for easy navigation. </p>
<p class="colored">2024 Cinema Scope | All Rights Reserved</p>
<p>
<a href="./dev.html">Developer Info</a> |
<a href="https://github.com/GraphicsAndroid65/Movie-Website" target="_blank">Github</a>
</p>
</footer>
<script>
// Show all movies by default
function showAllMovies() {
const allMovies = document.querySelectorAll('.movie-card');
allMovies.forEach(movie => movie.style.display = 'block');
}
// Filter movies based on category
function filterMovies(category) {
const allMovies = document.querySelectorAll('.movie-card');
allMovies.forEach(movie => movie.style.display = 'none');
const selectedMovies = document.querySelectorAll(`.movie-card.${category.toLowerCase()}`);
selectedMovies.forEach(movie => movie.style.display = 'block');
}
</script>
</body>
</html>