It is easy to embed Nina figures on your own web page, even if you know nothing about Java. First, download the MiniNina applet archive file, available as a tar or a zip file, and untar/unzip it. It consists of five Java class files. These files should be put in the same directory as the HTML file you want the applet to appear on. Use the APPLET tag to include the MiniNina.class. The following parameters are available:
To make this a bit more clear, here are a couple examples of use of the APPLET tag, along with the results they produce:
<APPLET CODE="MiniNina.class"
NAME="Nina"
WIDTH=300
HEIGHT=300>
<PARAM name="max_lines" value="500">
<PARAM name="line_delay" value="5">
<PARAM name="figure_delay" value="5">
<PARAM name="seed" value="1">
<PARAM name="background" value="white">
</APPLET>
<APPLET CODE="MiniNina.class"
NAME="Nina"
WIDTH=150
HEIGHT=150>
<PARAM name="max_lines" value="200">
<PARAM name="line_delay" value="40">
<PARAM name="figure_delay" value="0">
<PARAM name="seed" value="2">
<PARAM name="background" value="black">
</APPLET>