blob: 62d5ee93502be29e451c571bbbb74386affdb12c [file] [log] [blame]
<html>
<head><title>A simple page with the focus on a text edit</title></head>
<script>
function init() {
document.f.q.focus();
}
</script>
<body onload="init()">
<h1>Hello</h1>
Search:
<form name=f>
<input name=q size=55 title="Google Search" value=""><br>
<form>
<a href="http://www.google.com">Google</a>&nbsp;&nbsp;
<a href="http://mail.google.com">GMail</a>&nbsp;&nbsp;
<a href="http://maps.google.com">GMap</a>
</body>
</html>