-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (42 loc) · 1.13 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
<!DOCTYPE html>
<html lang="zxx">
<head>
<title>Movies-Wiki</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8" />
<script>
addEventListener("load", function () {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<!-- //Meta tag Keywords -->
<!--/Style-CSS -->
<link rel="stylesheet" href="css/mainpage.css" type="text/css" media="all" />
<!--//Style-CSS -->
<!-- font-awesome-icons -->
<link href="css/font-awesome.css" rel="stylesheet">
<!-- //font-awesome-icons -->
</head>
<body>
<section class="section">
<!-- /section -->
<div class="main">
<div class="wrapper">
<div class="top">
<div class="form">
<h1>MoviesWiki</h1>
<form action="search.html" method="GET" onsubmit="mainfun()" class="d-flex coming-form">
<input id="text" name="text" type="text" placeholder="Search for any movies, series etc.,">
<button type="submit"><i class="fa fa-search"></i></button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- //section -->
</body>
</html>