| Simon Toon | Personal pages/links | Java section |
| Favourite Java Links |
| JavaTM Platform 1.1 API Specification |
| java.awt.Button |
| java.awt.Frame |
| java.awt.Label |
| java.awt.Panel |
| java.lang.String |
| java.awt.TextField |
Check out htmlgoodies.earthweb.com/beyond/fullscreen.html. (HTML Goodies is a fantastic resource.)
Here is an example of an HTML page with redirection to another page...
| <html>
<head> <title>test</title> </head> <SCRIPT>
<body>
|
I learnt this from Chapter 3 of http://developer.netscape.com:80/docs/manuals/communicator/jsguide4/contents.htm
Here's another way, but this one has a nice 10-second delay.
| <html>
<head>
<body>
</html> |
For a link which opens a new browser window, add target="new" to the
<a href=> clause.
http://www.simon.toon.macunlimited.net
| <a href ="http://www.simon.toon.macunlimited.net" target="new">http://www.simon.toon.macunlimited.net</a> |