The original issue is now fixed. I could download the Jar from http://dementedgames.site88.net/Evolution.jar
Update
The Evolution.Evolution
class does not seem to be an applet! By running it from the command line using:
java -jar Evolution.jar
Creates a frame (with a very "retro")! So, forget about this paragraph of the applet and start the frame from the link using Java Web Start .
Old answer
OTOH now throws a ClassNotFoundException
, which (after checking the Jar) makes me think it should be:
<html> <head> <title>Evolution</title> </head> <body bgcolor="#000000" text="#906060"> <center> <applet code="Evolution.Evolution" archive="Evolution.jar" width="800" height="600"> </applet> </center> </body> </html>
There are two changes to the code
attribute.
- The
.class
extension has been removed. A small thing, adding it, is tolerant, but not right. Applet
removed from class name.
source share