11 lines
265 B
HTML
Executable File
11 lines
265 B
HTML
Executable File
<html>
|
|
<head>
|
|
<title>Example 5.23a: Page One</title>
|
|
</head>
|
|
<body>
|
|
<h3>See what's on the next page...</h3>
|
|
<p><input type="button" id="pageOne" value="This button will take you to the next page"
|
|
onclick = "location.href = 'page_two.html'"; /></p>
|
|
</body>
|
|
</html>
|