Home > Article > Web Front-end > How to use html applet tag
The
html applet tag is used to define an embedded applet. Some browsers still exist for
#html How to use the applet tag?
Function: Define embedded applet.
Note:
Some browsers still have support for
Note:
HTML5 does not support the
html applet tag usage example
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <applet code="Bubbles.class" width="350" height="350"> Java applet that draws animated bubbles. </applet> </body> </html>
The result is:
The above is the detailed content of How to use html applet tag. For more information, please follow other related articles on the PHP Chinese website!