-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
199 lines (175 loc) · 9.71 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
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
<!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">
<!-- favicon -->
<link rel="icon" type="image/jpg" sizes="16x16" href="movies-icon-png-8.jpg">
<!-- page title -->
<title>My IMDB | Home Page</title>
<!-- for bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<!-- head part -->
<header class="mb-3 mr-3 border-bottom">
<nav class="navbar navbar-light bg-light fixed-top">
<div class="container-fluid">
<a class="navbar-brand">
<img src="movies-icon-png-8.jpg" alt="" width="30" height="30" class="d-inline-block align-text-top">
<span>My IMDB</span>
</a>
<form class="d-flex">
<div id="search-autocomplete" class="form-outline">
<input id="form1" class="form-control me-2" type="search" placeholder="Search" aria-label="Search" style="width: 300px !important;">
</div>
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
<form class="d-flex">
<a href="./favouriteMovies.html" class="btn btn-outline-success me-2" type="button" target='_blank'>Favourite Movies</a>
</form>
</div>
</nav>
</header>
<div id="search-autocomplete-list" class="list-group fixed-top visually-hidden" style="width: 290px; margin-left: 37%; margin-top: 50px;">
<a href='#' class='list-group-item list-group-item-action'>No Result Found</a>
</div>
<main>
<!-- new Movies -->
<div class="container px-4 py-5" id="custom-cards">
<h2 class="pb-2 border-bottom">Now Movies</h2>
<div class="row row-cols-4 row-cols-lg-4 align-items-stretch g-4 py-5">
<div class="col">
<div class="card h-100" id="now-movie-card-1">
<img class="card-img-top" alt="Movies photo">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">More Info >> </a>
<button type="button" class="btn btn-secondary">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-heart-fill" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314z"></path>
</svg>
</button>
</div>
</div>
</div>
<div class="col">
<div class="card h-100" id="now-movie-card-2">
<img class="card-img-top" alt="Movies photo">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">More Info >> </a>
<button type="button" class="btn btn-secondary">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-heart-fill" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314z"></path>
</svg>
</button>
</div>
</div>
</div>
<div class="col">
<div class="card h-100" id="now-movie-card-3">
<img class="card-img-top" alt="Movies photo">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">More Info >> </a>
<button type="button" class="btn btn-secondary">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-heart-fill" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314z"></path>
</svg>
</button>
</div>
</div>
</div>
<div class="col">
<div class="card h-100" id="now-movie-card-4">
<img class="card-img-top" alt="Movies photo">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">More Info >> </a>
<button type="button" class="btn btn-secondary">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-heart-fill" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314z"></path>
</svg>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- Hindi Movies -->
<div class="container px-4 py-5" id="custom-cards">
<h2 class="pb-2 border-bottom">Hindi Movies</h2>
<div class="row row-cols-4 row-cols-lg-4 align-items-stretch g-4 py-5">
<div class="col">
<div class="card h-100" id="hindi-movie-card-1">
<img class="card-img-top" alt="Movies photo">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">More Info >> </a>
<button type="button" class="btn btn-secondary">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-heart-fill" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314z"></path>
</svg>
</button>
</div>
</div>
</div>
<div class="col">
<div class="card h-100" id="hindi-movie-card-2">
<img class="card-img-top" alt="Movies photo">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">More Info >> </a>
<button type="button" class="btn btn-secondary">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-heart-fill" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314z"></path>
</svg>
</button>
</div>
</div>
</div>
<div class="col">
<div class="card h-100" id="hindi-movie-card-3">
<img class="card-img-top" alt="Movies photo">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">More Info >> </a>
<button type="button" class="btn btn-secondary">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-heart-fill" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314z"></path>
</svg>
</button>
</div>
</div>
</div>
<div class="col">
<div class="card h-100" id="hindi-movie-card-4">
<img class="card-img-top" alt="Movies photo">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="btn btn-primary">More Info >> </a>
<button type="button" class="btn btn-secondary">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-heart-fill" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314z"></path>
</svg>
</button>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- Link javascript file -->
<script src="index.js"></script>
</body>
</html>