'applet' Example : applet « Object « HTML / CSS

HTML / CSS » Object » applet 
'applet' Example

    
<html>
<head>
<title>applet element example</title>
</head>
<body>
    <applet code="YourClass.class" width="350" height="260">
        <param name="image"     value="yourImage.jpg">
        <param name="border"    value="0">
    </applet>
</body>
</html>

           
      
      
Related examples in the same category
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.