Attribute for <APPLET ...>
HSPACE = integer
| this code |
produces this |
<APPLET
CODE="MyApplet.class"
HEIGHT=125 WIDTH=75
ALIGN=LEFT
HSPACE=1>
<PARAM NAME=TEXT VALUE="Welcome">
</APPLET>
|
Welcome to My Town.
Ain't it a great place? |
<APPLET
CODE="MyApplet.class"
HEIGHT=125 WIDTH=75
ALIGN=LEFT
HSPACE=15>
<PARAM NAME=TEXT VALUE="Welcome">
</APPLET>
|
Welcome to My Town.
Ain't it a great place?
|
|