Pretty sure you can't compile HTML files with java....
If I remember my java days, All your html document is doing is calling one of the classes that you compile
I'm guessing you have some sort of Practice.java file
Run that with javac and make sure your HTML file is calling Practice.class
i.e.
Code
<APPLET code="Practice.class" WIDTH="200" HEIGHT="40">
This is where Practice.class runs.</APPLET>