I made an applet that works fine when ran from HTML
<Body>
<Applet code="Simple.class" width=800 Height=100>
</Applet>
</Body>
after this I executed "jar cvf simple.jar simple.class" but this time I can't get it to run from HTML
<Body>
<Applet CODE="Simple.class"
ARCHIVE = "Simple.jar" width=800 Height=100>
</Applet>
</Body>
Can you tell me what I did wrong ?