-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (57 loc) · 1.63 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Yify Movies" />
<title>Yify Movies</title>
<link rel="icon" type="image/png" href="images/mini-logo.png" />
<link rel="stylesheet" href="Assests/style.css" />
<link
href="https://fonts.googleapis.com/css?family=Kaushan+Script|Lobster|Merienda|Monoton|Permanent+Marker"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<!-- end of head -->
<body>
<div class="container">
<header class="header">
<h1>Yify Movies</h1>
</header>
<!-- header -->
<div class="boxes text-center">
<p>Type in the search box to search for yify movies.</p>
<form class="searchDiv">
<input
type="text"
autocomplete="off"
autofocus
value=""
name="search"
id="searchBox"
placeholder="Search"
/>
<button class="btn" type="submit">
<i class="fa fa-search" id="searchBtn"></i>
</button>
</form>
</div>
<!-- box -->
<div id="movies"></div>
<!-- movies -->
</div>
<!-- container -->
<footer class="footer">
<div>
Copyright © <span class="date__year"></span> all right reserved
</div>
<div>Made by Zullu</div>
</footer>
<!-- footer -->
<script src="Assests/script.js"></script>
</body>
</html>