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

11 lines
261 B
HTML

<html>
<head>
<title>Applet Element Example</title>
</head>
<body>
<applet code="YourClass.class" width="600" height="240">
<param name="image" value="Image.jpg">
<param name="border" value="0">
</applet>
</body>
</html>