-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
151 lines (139 loc) · 6.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z"
crossorigin="anonymous"
>
<script type="text/javascript" src="https://www.google.com/books/jsapi.js"></script>
<!-- Optional JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="js/index.js" type="text/javascript"></script>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU"
crossorigin="anonymous"
>
<!-- Range slider -->
<link rel="stylesheet" href="css/jquery.rangerover.css">
<script src="js/jquery.rangerover.js"></script>
<!-- Preload -->
<script src="js/preloader.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/preloader.css" type="text/css">
<link rel="stylesheet" href="css/index.scss" type="text/css">
<link rel="stylesheet" href="css/index.css" type="text/css">
<title>Entertainment Finder!</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary fixed-top">
<a class="navbar-brand" href="#">Entertainment Finder</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarColor02"
aria-controls="navbarColor02"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarColor02">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a id="home" class="nav-link" href="#">
Home
<span class="sr-only">(current)</span>
</a>
</li>
</ul>
</div>
<div class="collapse navbar-collapse" id="back-top">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">
<i class="fa fa-arrow-up"></i>
Back to Top
<span class="sr-only">(current)</span>
</a>
</li>
</ul>
</div>
</nav>
<div class="jumbotron text-center">
<h1 class="display-4">Welcome to Entertainment Finder!</h1>
<p class="lead">
This is a simple web application that lets you find your perfect
Entertainment
</p>
<hr class="my-4">
<p>We bring you Books, Movies and TV Shows that match your preferences</p>
</div>
<div id="preloadBlock"></div>
<div class="card-deck basic-options">
<div id="Series" class="card categorySelector">
<img src="https://img.icons8.com/nolan/512/tv-show.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">TV Shows</h5>
<p class="card-text">
Enjoy a wide range of TV Shows that are specially selected based on
your preferences.
</p>
</div>
</div>
<div id="Movie" class="card categorySelector">
<img src="https://img.icons8.com/nolan/512/movie.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Movies</h5>
<p class="card-text">
We fine tune the movie list to match exactly what you like to watch.
</p>
</div>
</div>
<div id="Book" class="card categorySelector">
<img src="https://img.icons8.com/nolan/512/books-1.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Books</h5>
<p class="card-text">
We bring you carefully selected books that have been customized for
you.
</p>
</div>
</div>
</div>
<div class="text-center proceed">
<button type="button" class="btn btn-primary select-category ">
Proceed
</button>
</div>
</div>
<div class="searchBlock">
<div>
<a class="btn btn-primary btn-lg" id="return-button" role="button">
<i class="fa fa-chevron-circle-left"></i>
Back to Main Categories
</a>
</div>
<div class="genreHeading"></div>
<div class="container d-flex h-100">
<div class="row justify-content-center row-cols-6"></div>
</div>
<div class="ratingsHeading"></div>
<div class="ratingsSelector"></div>
<div class="seasonsHeading"></div>
<div class="seasonSelector"></div>
</div>
<div class="search text-center"></div>
<div class="resultBlock"> </div>
</body>
</html>