Creating first Physlet page

Step 2: Insert the applet

<html>
<head>
<title>My Physlet</title>
</head>
<body>
<h1>My Physlet</h1>
<applet width=300
   height=200
   name=myPhyslet
   id=myPhyslet
   codebase = "../classes"
   archive="Animator4_.jar,STools4.jar"
   code=animator4.Animator.class
>
</applet>
</body>
</html>
Go to next step