I have a java aplpet in eclipse. How do i get my java applet to load in an html web page. I put the .class file from the bin director in the same directory as my web page. I tried applet tag but it gives me an empty white box. Here is the code for my web page.
<html>
<body >
<applet code="Main2.class" width="800" height="600">
</body>
</html>