I have made a game in Java, and I want to upload it to my Weebly site. I have tested it with WAMP, and the index.html works well. But when I upload all the archives and the .jar to my Weebly site (it's possible to create a folder there?), and then I use the Custom HTML Element feature to embed the code, it just doesn't work.
<applet code="org.lwjgl.util.applet.AppletLoader"
archive="lwjgl_util_applet.jar, lzma.jar"
codebase="./mygamelib/"
width="600" height="300">
<param name="al_title"
value="MyGame">
<param name="al_main"
value="org.newdawn.slick.AppletGameContainer">
<param name="game"
value="org.myorg.mygame.MyGame">
<param name="al_progressbar"
value="appletprogress.gif">
<param name="al_jars"
value="slick.jar, mygame.jar, lwjgl.jar.pack.lzma, jinput.jar.pack.lzma, lwjgl_util.jar.pack.lzma">
<param name="al_windows"
value="windows_natives.jar.lzma">
<param name="al_linux"
value="linux_natives.jar.lzma">
<param name="al_mac"
value="macosx_natives.jar.lzma">
<param name="al_solaris"
value="solaris_natives.jar.lzma">
</applet>