-
Notifications
You must be signed in to change notification settings - Fork 396
/
faq.html
285 lines (267 loc) · 13.3 KB
/
faq.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>ApnaTheatre</title>
<link rel="shortcut icon" href="./Images/Logo/Title.jpeg" type="image/x-icon">
<!-- Font -->
<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=Ubuntu&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link href="./static/style.css" rel="stylesheet" type="text/css" />
<link href="./static/faq.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="static/bootstrap.min.css">
<link rel="stylesheet" href="static/style-min.css">
<link rel="stylesheet" href="cards.css">
<link rel="stylesheet" href="footer.css">
<style>
.nav-item :hover{
margin-bottom: 10px;
}
#header-nav .navbar-nav .nav-item .nav-link:hover {
color: red;
text-decoration: none; /* Remove underline */
transition: color 0.3s ease, text-shadow 0.3s ease; /* Add transition effect */
text-shadow: 0 0 10px red; /* Add glowing effect */
}
</style>
</head>
<body>
<!-- navbar starts -->
<nav class="navbar navbar-expand-lg navbar-light bg-dark" id="header-nav">
<div class="container-fluid">
<a class="navbar-brand" href="home.html"><img class="logo" src="Images/TheaterLogoFinal.png" alt="" width="30"
height="24"></a>
<button id="nav" class="navbar-toggler" id="nav" style="background-color:#8b0000" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon" style="background-color:dark-grey;"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="home.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="movies.html">Movies</a>
</li>
<li class="nav-item">
<a class="nav-link" href="web-series.html">Web Series</a>
</li>
<li class="nav-item">
<a class="nav-link" href="kids.html">Kids</a>
</li>
<li class="nav-item">
<a class="nav-link" href="tv.html">TV</a>
</li>
<li class="nav-item">
<a class="nav-link" href="premium.html">Premium</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contactus.html">Contact Us</a>
</li>
<li>
<!-- Genre dropdown starts-->
<div>
<div class="dropdown" style="position: relative; display: inline-block; padding-top: 5px; padding-left: 15px;">
<button class="btn btn-outline-danger dropdown-toggle" type="button" id="dropdownMenuButton" style="font-size:20px;">
Genres
</button>
<div class="dropdown-content" style="color: white;">
<a href="popular.html">Popular</a>
<a href="crime.html">Crime</a>
<a href="suspense.html">Suspense & Thriller</a>
<a href="action.html">Action</a>
<a href="fantasy.html">Sci-Fi & Fantasy</a>
<a href="documentary.html">Documentary</a>
<a href="horror.html">Horror</a>
<a href="drama.html">Drama</a>
<a href="war.html">War & Politics</a>
<a href="comedy.html">Comedy</a>
<a href="romance.html">Romance</a>
<a href="anime.html">Anime</a>
</div>
</div>
</div>
<!-- Genre dropdown ends-->
</li>
<div style="position: relative; display: inline-block; padding-top: 5px; padding-left: 15px;">
<li>
<button type="button" class="btn btn-light" onclick="logout()">Logout</button>
</li>
</div>
</ul>
<form id="searchForm" class="d-flex">
<input class="form-control me-2" type="text" id="searchText" placeholder="Search" aria-label="Search">
<button class="btn btn-danger" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!-- navbar ends -->
<!-- ======= Frequently Asked Questions Section ======= -->
<div class="faq-section"><h2 align="center">Frequently Asked Questions</h2>
<details open>
<summary align="center">What is Movie Streaming?</summary>
<div class="faq__content">
<p>Movie Streaming is a streaming service that offers a wide variety of award-winning TV shows, movies, anime, documentaries and more – on thousands of internet-connected devices.</p>
<p>You can watch as much as you want, whenever you want, without a single ad – all for one low monthly price. There's always something new to discover, and new TV shows and movies are added every week!</p>
</div>
</details>
<br>
<br>
<details>
<summary align="center">How much does Movie Streaming cost?</summary>
<div class="faq__content">
<p>Watch Movie Streaming on your smartphone, tablet, Smart TV, laptop, or streaming device, all for one fixed monthly fee. Plans range from ₹ 199 to ₹ 799 a month. No extra costs, no contracts.</p>
</div>
</details>
<br>
<br>
<details>
<summary align="center">Where can I watch?</summary>
<div class="faq__content">
<p>Watch anywhere, anytime, on an unlimited number of devices. Sign in with your Movie Streaming account to watch instantly on the web at moviestreaming.com from your personal computer or on any internet-connected device that offers the Movie Streaming app, including smart TVs, smartphones, tablets, streaming media players and game consoles.
You can also download your favourite shows with the iOS, Android, or Windows 10 app. Use downloads to watch while you're on the go and without an internet connection. Take Movie Streaming with you anywhere.
</p>
</div>
</details>
<br>
<br>
<details>
<summary align="center">How do I cancel?</summary>
<div class="faq__content">
<p>Movie Streaming is flexible. There are no annoying contracts and no commitments. You can easily cancel your account online in two clicks. There are no cancellation fees – start or stop your account anytime.</p>
</div>
</details>
<br>
<br>
<details>
<summary align="center">What can I watch on Movie Streaming?</summary>
<div class="faq__content">
<p>Movie Streaming has an extensive library of feature films, documentaries, TV shows, anime, award-winning Movie Streaming originals, and more. Watch as much as you want, anytime you want.</p>
</div>
</details>
<br>
<br>
<details>
<summary align="center">Is Movie Streaming good for kids?</summary>
<div class="faq__content">
<p>The Movie Streaming Kids experience is included in your membership to give parents control while kids enjoy family-friendly TV shows and films in their own space.<br>Kids profiles come with PIN-protected parental controls that let you restrict the maturity rating of content kids can watch and block specific titles you don’t want kids to see.</p>
</div>
</details>
<br>
</details>
<!-------------------------------Footer-------------------------------->
<footer class="footer">
<hr class="footer-hr">
<div class="footer-content m-0">
<div class="footer-left">
<a href="home.html"><img class="footer-logo" src="Images/TheaterLogoFinal.png" alt="" width="30"
height="24"></a>
<p class="footer-bottom-tagline">Watch! Chill! Repeat!</p>
</div>
<div class="footer-middle">
<h2 class="footer-heading">Follow Us</h2>
<ul class="footer-middle-list icons">
<a class="footer-links" href="https://www.facebook.com/" target="_blank"><i
class="fab fa-facebook-f facebook" style="color:red"></i></a>
<a class="footer-links" href="https://twitter.com/login?lang=en" target="_blank"><i
class="fab fa-twitter twitter" style="color:red"></i></a>
<a class="footer-links" href="https://www.linkedin.com/login" target="_blank"><i
class="fab fa-linkedin linkedin" style="color:red"></i></a>
<a class="footer-links" href="https://www.instagram.com/" target="_blank"><i
class="fab fa-instagram instagram" style="color:red"></i></a>
<a class="footer-links" href="https://github.com/QAZIMAAZARSHAD/Movie-Streaming-Website" target="_blank"><i
class="fab fa-github github" style="color:red"></i></a>
</ul>
</div>
<div class="footer-middle">
<h2 class="footer-heading">Services</h2>
<ul class="footer-middle-list">
<li class="footer-middle-list-item"><a href="home.html">Enjoy Latest Movies</a> </li>
<li class="footer-middle-list-item"><a href="web-series.html">Watch Web-Series</a> </li>
<li class="footer-middle-list-item"><a href="kids.html">Everything for Kids</a> </li>
<li class="footer-middle-list-item"><a href="news.html">Coming soon</a> </li>
<li class="footer-middle-list-item"><a href="premium.html">Get Premium Subscription</a> </li>
<li class="footer-middle-list-item"><a href="faq.html">FAQ</a> </li>
</ul>
</div>
<div class="footer-middle">
<h2 class="footer-heading">Try Our App</h2>
<ul class="footer-middle-list icons">
<a class="footer-links" href="#"><i class="fab fa-google-play" style="color:red"></i></a>
<a class="footer-links" href="#"><i class="fab fa-app-store-ios" style="color:red"></i></a>
</ul>
</div>
<div class="footer-right mt-0">
<p class="footer-links mb-0">
<h2 class="footer-heading d-flex">Contact Us</h2>
<p class="footer-bottom-tagline">Feel free to contact us.</p>
<a class="footer-contact-button" href="contactus.html">Contact</a>
</p>
</div>
</div>
<hr class="footer-hr">
<div class="footer-copyright">
<p>Copyright © and ® Since
<script>
document.write(new Date().getFullYear())
</script> Under ApnaTheatre.com : (Project Is Done By Qazi Maaz Arshad)
</p>
</div>
</footer>
<!----------------------scroll back to top button-->
<button id="scrollToTopButton" title="Go to top" class="ml-5">
<i class="fa fa-angle-double-up" aria-hidden="true"></i>
</button>
<script>
$(document).ready(function () {
var scrollTopButton = document.getElementById("scrollToTopButton");
window.onscroll = function () { scrollFunction() };
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
scrollTopButton.style.display = "block";
} else {
scrollTopButton.style.display = "none";
}
}
$("#scrollToTopButton").click(function () {
$('html ,body').animate({ scrollTop: 0 }, 800)
});
});
</script>
<!-- footer scripts -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<script src="https://daniellaharel.com/raindrops/js/raindrops.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="js/main-min.js"></script>
<script>
jQuery('#waterdrop').raindrops({
color: '#292c2f',
canvasHeight: 150,
density: 0.1,
frequency: 20
});
</script>
<script>
function logout(){
window.location.replace("login.html");
}
</script>
<!-- bootsstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"></script>
<script src="./static/script.js"></script>
</body>
</html>