Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<html>
<head>
<title>Google Search</title>
<meta name="author" content="GUJUm0deL">
<SCRIPT LANGUAGE=JAVASCRIPT>
function googleSearch() {
if (document.doingasearch.searchbox.value!="") {
window.open("http://www.google.com/search?hl=en&q=" + document.doingasearch.searchbox.value) ;
}
else {
alert("Please enter something to search.")
document.doingasearch.searchbox.focus();
}
}
</SCRIPT>
</head>
<body bgcolor="#FFFFFF">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><div align="center">Type any search criteria in the textfield and this
will search it on google. <br>
<br>
<em>Search results opens in a new window.</em></div></td>
</tr>
<tr>
<td>á</td>
</tr>
<tr>
<td>
<FORM name="doingasearch" id="doingasearch">
Google
<INPUT name=searchbox type=text size=20>
<INPUT type="button" value="Search" onclick="return googleSearch();">
</FORM>
</td>
</tr>
<tr>
<td>For more scripts visit <a>http://www.imajinarts.com/downloads.cfm</a>
</td>
</tr>
</table>
</body>
</html>