-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
163 lines (153 loc) · 4.5 KB
/
index.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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<!-- Basic need -->
<title>Netflix Movies</title>
<meta charset="UTF-8">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<link rel="profile" href="#">
<!--Google Font-->
<link rel="stylesheet" href='http://fonts.googleapis.com/css?family=Dosis:400,700,500|Nunito:300,400,600' />
<!-- Mobile specific meta -->
<meta name=viewport content="width=device-width, initial-scale=1">
<meta name="format-detection" content="telephone-no">
<!-- CSS files -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--preloading-->
<div id="preloader">
<img class="logo" src="images/logo1.png" alt="" width="119" height="58">
<div id="status">
<span></span>
<span></span>
</div>
</div>
<!--end of preloading-->
<!-- BEGIN | Header -->
<header class="ht-header">
<div class="container">
<nav class="navbar navbar-default navbar-custom">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header logo">
<a href="#"><img class="logo" src="images/logo1.png" alt="" width="119" height="58"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<!-- /.navbar-collapse -->
</nav>
<!-- top search form -->
<div class="top-search">
<input id="search_box" type="text" placeholder="Search for a movie, TV Show or celebrity that you are looking for">
</div>
</div>
</header>
<!-- END | Header -->
<div class="hero common-hero">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="hero-ct">
<h1>Movie Rating</h1>
</div>
</div>
</div>
</div>
</div>
<div class="page-single">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="topbar-filter">
<label>Movies per page:</label>
<select>
<option value="range">30 Movies</option>
<option value="saab">60 Movies</option>
</select>
<div class="pagination2">
<a class="back_page" href="#">BACK</a>
<a class="next_page" href="#">NEXT</a>
</div>
</div>
<div class="flex-wrap-movielist mv-grid-fw">
</div>
<div class="topbar-filter">
<label>Movies per page:</label>
<select>
<option value="range">30 Movies</option>
<option value="saab">60 Movies</option>
</select>
<div class="pagination2">
<a class="back_page" href="#">BACK</a>
<a class="next_page" href="#">NEXT</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- footer section-->
<footer class="ht-footer">
<div class="container">
<div class="flex-parent-ft">
<div class="flex-child-ft item1">
<a href="index.html"><img class="logo" src="images/logo1.png" alt=""></a>
<p>5th Avenue st, manhattan<br>
New York, NY 10001</p>
<p>Call us: <a href="#">(+01) 202 342 6789</a></p>
</div>
<div class="flex-child-ft item2">
<h4>Resources</h4>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Blockbuster</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Forums</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Help Center</a></li>
</ul>
</div>
<div class="flex-child-ft item3">
<h4>Legal</h4>
<ul>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Security</a></li>
</ul>
</div>
<div class="flex-child-ft item4">
<h4>Account</h4>
<ul>
<li><a href="#">My Account</a></li>
<li><a href="#">Watchlist</a></li>
<li><a href="#">Collections</a></li>
<li><a href="#">User Guide</a></li>
</ul>
</div>
<div class="flex-child-ft item5">
<h4>Newsletter</h4>
<p>Subscribe to our newsletter system now <br> to get latest news from us.</p>
<form action="#">
<input type="text" placeholder="Enter your email...">
</form>
<a href="#" class="btn">Subscribe now <i class="ion-ios-arrow-forward"></i></a>
</div>
</div>
</div>
<div class="ft-copyright">
<div class="ft-left">
<p>© 2017 Blockbuster. All Rights Reserved. Designed by leehari.</p>
</div>
<div class="backtotop">
<p><a href="#" id="back-to-top">Back to top <i class="ion-ios-arrow-thin-up"></i></a></p>
</div>
</div>
</footer>
<!-- end of footer section-->
<script src="js/jquery.js"></script>
<script src="js/plugins.js"></script>
<script src="js/plugins2.js"></script>
<script src="js/custom.js"></script>
</body>
</html>