-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
88 lines (75 loc) · 2.72 KB
/
search.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>CINEMACRUSH</title>
<link rel="icon" href="img/favcon.png">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/footer.css">
<script src="https://code.jquery.com/jquery-2.2.0.min.js" type="text/javascript"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script defer src="js/anime.js"></script>
<script defer src="js/welcome.js"></script>
<script defer src="js/loader.js"></script>
</head>
<body>
<div class="welcome">
<h1 class="heading">CINEMACRUSH</h1>
<h3 class="sub-heading">Collection of popular Movies</h3>
<div class="loader-wrapper">
<div class="loader"></div>
</div>
</div>
<section class="main">
<nav>
<div class="container">
<a href="index.html" id="brand"><img src="img/logo.png"></a>
<button class="show_me">
<span></span>
<span></span>
<span></span>
</button>
<ul class="navbar-menu hide">
<li><a href="index.html">Box Office</a></li>
<li><a href="popular.html">Popular</a></li>
<li><a href="top_rated.html">Top Rated</a></li>
<li><a href="upcoming.html">Upcoming</a></li>
<li><a href="trend.html">Trending</a></li>
<li><a href="tv.html">TV Show</a></li>
<li><a href="#">Search About</a></li>
</ul>
</div>
</nav>
<div class="land">
<p>Latest movies and movie trailers</p>
<p>CinemaCrush is your beautiful collection of popular, top rated, box office and upcoming movies. Discover latest movie trailers and reviews. Show your LOVE of movies.</p>
</div>
<div class="jumbotron">
<h3>Search For Any Movie</h3>
<form id="searchForm">
<input type="search" id="searchText" placeholder="Search Movies...">
</form>
</div>
<div class="info">
<h2>Your Result</h2>
</div>
<div class="film">
<div id="movies_search" class="row"></div>
</div>
<!-- start footer -->
<!-- start footer -->
<div class="footer">
<div class="logo"><a href="/"><img src="img/cinemacrush-logo.png" alt="Cinema Crush" width="180" height="25" border="0"></a></div>
<div class="copy">Copyright © <a href="/">CinemaCrush</a>. Date Source: <a href="http://www.themoviedb.org/" target="_blank">TMDb</a></div>
</div>
</section>
<script src="js/main.js"></script>
<script src="js/query.js"></script>
<script type="text/javascript">
var infolinks_pid = 3202434;
var infolinks_wsid = 0;
</script>
<script type="text/javascript" src="http://resources.infolinks.com/js/infolinks_main.js"></script>
</body>
</html>