I have a Runnable jar file, is there anyway to embed it into html so people dont have to download my game to play?
An Applet is what you want...put the following inside your html..
<APPLET ARCHIVE="yourfile.jar" CODE="yourApplet.class" WIDTH=400 HEIGHT=200>
</APPLET>
Of course for this, your jar file must contain yourApplet.class