-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.html
More file actions
64 lines (59 loc) · 1.44 KB
/
search.html
File metadata and controls
64 lines (59 loc) · 1.44 KB
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
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="src/search.js"></script>
<style type="text/css">
body {
font-family: Arial;
}
#search_input {
border: 1px solid #CCC;
border-right: none;
height: 20px;
padding: 5px;
margin-right: 0;
outline: none;
}
#clear {
border: 1px solid #CCC;
border-left: none;
color: #ccc;
height: 20px;
padding: 6px;
text-decoration: none;
}
#clear:hover {
color: #aaa;
}
</style>
</head>
<body>
<div id="search">
<input type="text" value="" id="search_input" /><a href="#" id="clear">X</a>
</div>
<table>
<tr id="home">
<td class="tag">Home</td>
<td><textarea>Home</textarea></td>
</tr>
<tr id="home2">
<td class="tag">Home</td>
<td><textarea>Home</textarea></td>
</tr>
<tr id="about_us">
<td class="tag">About Us</td>
<td><textarea>About Us</textarea></td>
</tr>
<tr id="contact_us">
<td class="tag">Contact Us</td>
<td><textarea>Contact Us</textarea></td>
</tr>
<tr id="login">
<td class="tag">Login</td>
<td><textarea>Login</textarea></td>
</tr>
</table>
</body>
</html>