blob: 30810f0913495f203a8ebb71b0ef096cb6d12035 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>Styled Page</title>
<script>
function log(message) {
document.getElementById('log').innerHTML = "<p>" + message + "</p>"
}
</script>
</head>
<body>
<div style="height: 200px"></div>
<form action="#" method="get" onsubmit="return false;">
<input name="searchBox">
<input type="submit" name="btn" style="padding-top: 4px; padding-bottom: 4px" value="Search" onclick="log('click');">
</form>
<div id="log"></div>
<div style="height: 4000px">Content</div>
</body>
</html>
|