How to add tube amp java applet ?
Hi Experts,
I am having a code in notepad and I run it on web browser. I want to add tube amp java applet to this code. Any expert help me on this providing me steps. Thanks.
Regards,
Andrewjohn
Hi Experts,
I am having a code in notepad and I run it on web browser. I want to add tube amp java applet to this code. Any expert help me on this providing me steps. Thanks.
Regards,
Andrewjohn
Â
To add tube amp Java applet you have to insert the <APPLET> tag in the page at the place where you want the output of the applet to appear.
Please see the example of a HTML code that is added with the<APPLET>
Â
<HTML>
<HEAD><TITLE></TITLE></HEAD><BODY><CENTER>
<APPLET CODE=testjava.class WIDTH=400 HEIGHT=200></APPLET></CENTER>
</BODY>
</HTML>
To make it run you should have the following files in your current directory:
Â
testjava.java
testjava.class
testjava.html
Â
Hope this is useful for you.