-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmovie.html
56 lines (48 loc) · 1.84 KB
/
movie.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
<!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>Movie Details</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" /> <script src="js/script.js"></script>
</head>
<body>
<div class="header">
<div class="container">
<a href="Home.html" class="logo">Filmy</a>
<ul class="main-nav">
<li><a href="Home.html">Home</a></li>
<li><a href="search.html">Search</a></li>
<li><a href="watchlist.html">Your Watchlist</a></li>
</ul>
</div>
</div>
<!--End Header-->
<!-- result container -->
<div class="result-container">
<div class="container" id="movieInfo">
<!-- movielays here -->
</div>
<!-- end of result container -->
</div>
<!--Start footer-->
<div class="footer">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-pinterest"></i></a>
<a href="#"><i class="fab fa-whatsapp"></i></a>
<a href="#"><i class="fab fa-google-plus-g"></i></a>
<p>filmy is the world's most popular and authoritative source for
movie, TV and celebrity content. Find ratings and reviews for the
newest movie and TV shows.<br><br>
Coded by : Rana Khaled & Mina Gamal</p>
</div>
<!-- movie app js -->
</body>
<script>
movieFromQuery();
</script>
</html>