<applet code="quoter.class" width="500" height="100" align="middle"> <param name="bgcolor" value="white"> <param name="bordercolor" value="black"> <param name="fontcolor" value="black"> <param name="fontname" value="TimesRoman"> <param name="fontsize" value="18"> <param name="fontstyle" value="ITALIC"> <param name="imagename"> <param name="imageheight" value="50"> <param name="imagewidth" value="100"> <param name="leftindent" value="20"> <param name="quotefile" value="quotes.txt"> <param name="rightindent" value="5"> <param name="space" value="5"> <param name="topindent" value="0"> </applet>
space Space in pixels between each line of text. Default is 3 rightindent Space to indent text from right side of applet. Default is 5. leftindent Space to indent text from left side of applet. Default is 20. topindent Space to indent text from top of applet. Default is 0. fontsize Size of font to use. Default is 18. fontname Name of Font. Pick from list below. Default is Times Roman. fontstyle Style of font. either BOLD, ITALIC, or PLAIN. Default is PLAIN. fontcolor Font color. Pick a color from the color list below, or type in RGB values separated in colons, i.e. 255:0:35 bordercolor Border color. Pick a color from the color list below, or type in RGB values separated in colons, i.e. 255:0:35 bgcolor Background color. Pick a color from the color list below, or type in RGB values separated in colons, i.e. 255:0:35 imagename relative url of image, relative to the path of the java applet. Default is no image. imagewidth If you specify an image, you have to specify a width of the image. imageheight If you specify an image, you have to specify a height of the image. quotefile relative url of quote file, relative to the path of the java applet. Will give error if not supplied.
----------------------------------------------------------------------- COLOR LIST: black, blue, cyan, darkGray, gray, green, lightGreen, magenta, orange, pink, red, white, yellow ----------------------------------------------------------------------- FONT LIST: TimesRoman, Helvetica, Courier, Dialog, DialogInput
Ian Charnas