<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title> The Page Title Goes Here </title>
</head>
<body>
<button>I am a button</button>
</body>
</html>
Here is the above button:
To make the above button perform a function, add the onclick function, this script opens a new window:
<button onClick="window.open('http://www.somewhere.com','mywindow','width=400,height=200')">Click Me</button>
Or you can make a image a button:
<button onClick="window.open('http://www.somewhere.com','mywindow','width=400,height=200')"><img src="something.gif" alt="Click Me" width="00" height="00"></button>
© Copyright 2001,2002 Southern Twilight All rights reserved.