If you are a Java programmer then you probably have a few applets that you are either are making for fun or expermenting or making professionally whatever.
Well I learned Java and have a few Applets that I had made (Formatted by diskand can't find them now). I found a way to "embed" applets in your page. Don't get me wrong I didn't figure this out but found it on the Internet. You have to compile the applet and then upload the .class file. Them insert the following code:
<div class="content-item"><div id='g_body'><applet code="THE FILE.class" height="180" width="200"></applet> </div></div>
Change the "THE FILE" into the name of your class file of course, and adjust the height and the width according to the dimensions of your form.
I mostly had small one that did simple mathematical problems, such as qudratic equations. It was basically the stuff that I needed at the time of making. I hope I find them then I'll post them here for all to see.