-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
53 lines (43 loc) · 1.52 KB
/
search.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
<!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>Gallery || A Photo Search App</title>
<link rel="stylesheet" href="./assets/common.css">
<link rel="stylesheet" href="./assets/search.css">
</head>
<body>
<!-- Navigtion bar -->
<nav>
<a href="./"><img src="./assets/logo.png" alt="Logo" class="logo" /></a>
<a href="./">
<h1 class="title">GALLERIE</h1>
</a>
<form action="./search.html" method="get">
<input type="text" name="q" placeholder="Search anything" autocomplete="off" class="search" />
<input type="submit" value="SEARCH" class="search" />
</form>
</nav>
<!-- Main Section -->
<section>
<h1 class ="heading"><SEARCH FOR - <span id="search_query"></span>/></h1>
<div class=" container" id="result_container"></div>
</section>
<!-- Footer of the page-->
<footer>
<a href="./">
<h5>Gallerie</h5>
</a>
<h1>|</h1>
<h5>Desingned and Developed by Anuj Shrivastava</h5>
<h1>|</h1>
<a href="./">
<h5>Github</h5>
</a>
</footer>
<script src="./assets/common.js"></script>
<script src="./assets/search.js"></script>
</body>
</html>