How to add tube amp java applet ?

Asked By 30 points N/A Posted on -
qa-featured

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

SHARE
Answered By 5 points N/A #159271

How to add tube amp java applet ?

qa-featured

 

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.

Related Questions