Files
ASDV-WebDev/Assignments/JavaScript/ch05/ch05/page_one.html
2023-03-22 13:49:03 -05:00

14 lines
330 B
HTML
Executable File

<html>
<head>
<title>Page One</title>
</head>
<body>
<table width = 80% align = "center"><tr><td>
<h1>&nbsp;</h1>
<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>
</td></tr></table>
</body>
</html>