programming-examples/css/Applet code element.html
2019-11-15 12:59:38 +01:00

14 lines
274 B
HTML

<html>
<head>
<title>Applet Code Element</title>
</head>
<BODY>
<applet id="javaclass"
code=yourjava.class
width=400
height=240>
<param name="param1" value="1">
<param name="param2" value="2">
</applet>
</body>
</html>