-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSearch1.html
51 lines (42 loc) · 1.5 KB
/
Search1.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
<html>
<head>
<title>Write the Post..</title>
<link href="styles/global_search1.css" rel="stylesheet" type="text/css"/>
<meta name="viewport" content="width=device-width, initial-scale: 1.0, user-scalable=0" />
<script src="scripts/jquery-3.2.1.min.js"></script>
<script src="scripts/general.js"></script>
</head>
<body>
<div id="header">
<img class="sidelogo" src="images/info.png" width= "50px" height="50px">
<div class="logo"><a href="#">Notice<span><strong>Board</strong></span></a></div>
<div class="exit"><a href="javascript:window.open('','_self').close();"><img src="images/exit.png"></a></div>
</div>
<a class="mobile" href="#"> MENU</a>
<a class="time" id="clock">HH:MM:SS</a>
<div id="container">
<div class="sidebar">
<ul id="nav">
<li><a href="Dashboard.php">Dashboard</a></li>
<li><a href="Write.html">Write</a></li>
<li><a href="Search1.html">Search</a></li>
<li><a href="Feedback.html">Feedback</a></li>
<li><a href="help.html">Help</a></li>
</ul>
</div>
<div class="content">
<br>
<h1> Write the Information...</h1>
<div id="box">
<div id="form">
<form action="search.php" id="usrform" method="POST">
<div class="box-name" id="name"><label for="name"> Search</label>
</div>
<input type="text" id="name" name="query" placeholder="Type Term to Search..">
<br><br>
<input type="submit" value="Search">
</form>
</div>
</div>
</body>
</html>