-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (48 loc) · 2 KB
/
index.html
File metadata and controls
55 lines (48 loc) · 2 KB
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
<!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>Movies expo</title>
<script src="https://kit.fontawesome.com/6f38b70ccc.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<img src="https://wallpaperboat.com/wp-content/uploads/2019/12/movie-theater-24.jpg" class="bg-img">
<div id="main">
<div id="header">
<div id="logo">
<a href="./index.html">Mini<span class="logotv">Tv</span></a>
</div>
<div id="search-bar">
<div class="wrapper">
<div id="search-area">
<input type="text" name="searchMovie" id="searchMovie" placeholder="starwars" autocomplete="off">
<i class="fa-solid fa-magnifying-glass"></i>
</div>
</div>
</div>
<div id="extra-buttons">
<button id="my-list">
<a href="./myfav.html">MyFav</a>
</button>
</div>
</div>
<div id="movie-container">
<div class="movie-element">
<!-- mapped items are displayed at here -->
</div>
</div>
</div>
<center>
<div class="page-navigation">
<button id="prev-page">Prev</button>
<button id="next-page">Next</button>
</div>
</center>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>