<PARAM ...>
<PARAM ...>| Usage Recommendation |
|---|
use it if you use <APPLET ...> |
|   |
|
Parameters are how you give details about how an applet should run. You use <PARAM ...>
| this code | produces this |
<APPLET CODE="MyApplet.class" HEIGHT=50 WIDTH=100> <PARAM NAME=TEXT VALUE="Hey Dude"> </APPLET> |
The <PARAM ...>
Here's what each piece means:
<PARAM- This is a parameter to pass to MyApplet.
NAME=TEXT- The name of the parameter to pass is "TEXT"
VALUE="Hey Dude"- The value of the "TEXT" parameter is "Hey Dude".
