As the title explains it, I need to deploy a java app inside html document.
I tried:
<applet code=Gume.class
width="120" height="120">
</applet>
and:
<applet code=Gume.class
archive="dist/Gume.jar"
width="400" height="600">
</applet>
It would be optimal, if I could deploy .jar file (aplication was made with NetBeans and the index.html file is in root of the application's folder).