-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
46 lines (44 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PictoHunt | A Photo Search Engine</title>
<link rel="stylesheet" href="./styles/common.css" />
<link rel="stylesheet" href="./styles/search.css" />
</head>
<body>
<!--navigation bar-->
<nav>
<a href=""><img src="./assets/logo.png" alt="logo" class="logo" /></a>
<a href="#"><h1 class="title">PictoHunt</h1></a>
<form action="./search.html" method="get">
<input
type="text"
name="q"
autocomplete="off"
placeholder="search anything"
class="search"
/>
<input type="submit" value="SEARCH" class="search" />
</form>
</nav>
<!--Information display-->
<section>
<h1 class="heading">
< SEARCH FOR <span id="search_query"></span>>
</h1>
<div class="container" id="image_conatiner"></div>
</section>
<!--Footer-->
<footer>
<a href=""><h5>PictoHunt</h5></a>
<h1>|</h1>
<h5>Designed and Developed by Srujan</h5>
<h1>|</h1>
<a href=""><h5>GitHub</h5></a>
</footer>
<script src="./controllers/common.js"></script>
<script src="./controllers/search.js"></script>
</body>
</html>