| jul96.tar |
Listing 6: Simple Web page with applet reference
<html> <head> <title>A Simple Example</title> </head> <body> <center><h1>This is a simple example of one applet</h1></center> <p> Enter data in the list below by clicking on the buttons below. Once you're finished, press the OK button. </p> <applet code=Simple.class width=300 height=200 align=absmiddle> This is a Java applet </applet> </body> </html>
|