Files
ASDV-WebDev/Semester 1/Assignments/JavaScript/ch05/ch05/ex_5_23a.htm
2023-08-16 17:31:33 -05:00

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>