-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
62 lines (59 loc) · 1.92 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
<!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" />
<meta
property="og:description"
content="Watch free 2022 newest Releases movies & series on LookMovie in HD Quality without Ads."
/>
<link
rel="icon"
href="https://lookmovie.la/favicon.ico"
type="image/icon"
/>
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/4e948b40f1.js"
crossorigin="anonymous"
></script>
<title>LookMovie | Watch Any Latest Movie for Free</title>
</head>
<body>
<header>
<a href="/"><img class="logo" src="/assets/logo.webp" alt="Logo" /></a>
<form id="form">
<input
type="text"
placeholder="Search Any Movie"
autocomplete="off"
id="search"
class="search"
/><i class="fas fa-search"></i>
</form>
</header>
<div id="tags"></div>
<div id="myNav" class="overlay">
<!-- Button to close the overlay navigation -->
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()"
>×</a
>
<!-- Overlay content -->
<div class="overlay-content" id="overlay-content"></div>
<a href="javascript:void(0)" class="arrow left-arrow" id="left-arrow"
><i class="fas fa-arrow-left"></i
></a>
<a href="javascript:void(0)" class="arrow right-arrow" id="right-arrow"
><i class="fas fa-arrow-right"></i
></a>
</div>
<main id="main"></main>
<div class="pagination">
<div class="page" id="prev">Previous Page</div>
<div class="current" id="current">1</div>
<div class="page" id="next">Next Page</div>
</div>
<script src="script.js"></script>
</body>
</html>