-
Notifications
You must be signed in to change notification settings - Fork 0
/
searchtop.html
37 lines (33 loc) · 1.09 KB
/
searchtop.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
<!DOCTYPE html>
<html>
<head>
<title>Local Bookstore Finder</title>
<style type="text/css">
body {text-align: center;
padding-top: 30px;
font-family: Lucida Grande, sans-serif;
}
body {text-align: center;
padding-top: 30px;
font-family: Lucida Grande, sans-serif;
}
.button {
color: #FFF;
border: 1px solid #000;background: #000;
}
.button:hover {
border: 1px solid #808080;
background: #808080;
cursor: pointer;
}
</style>
</head>
<body>
<form method="GET" action="http://maps.google.com/maps" id="local_search_form">
<input type="hidden" name="q" class="input" value="bookstore" />
<input type="text" size="50" name="near" class="local_search" style="color: #999;" value="Enter your zipcode to find a bookstore near you." onfocus="this.value=''; this.style.color='#000000'" />
<a class="rollover"><input type="button" class="button" value="search" name="submit" /></a>
</form>
<p><img src="images/supportposter.jpg"></p>
</body>
</html>