A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-applet-tag/ below:

HTML applet Tag - GeeksforGeeks

HTML applet Tag

Last Updated : 11 Jul, 2025

The applet tag in HTML was used to embed Java applets into any HTML document. The <applet> tag was deprecated in HTML 4.01, and its support has been completely discontinued starting from HTML 5. Alternatives available in HTML 5 are the <embed> and the <object> tags. Some browsers still support the <applet> tag with the help of some additional plug-ins/installations to work.

HTML
<!DOCTYPE html>
<html>
<applet code="HelloWorld">
    <param name="message" value="HelloWorld">
</applet>

</html>
Syntax: 
<param name=parameter_name value=parameter_value>

The name assigned to the name attribute of the param tag is used by the applet code as a variable to access the parameter value specified in the value attribute. In this way, the applet is able to interact with the HTML page where it is embedded, and can work on values provided to it by the page during run-time.

Attributes: Attribute Values Description align Specifies the alignment of an applet. alt Specifies an alternate text for an applet. archive Specifies the location of an archive file. border Specifies the border around the applet panel. codebase Specifies a relative base URL for applets specified in the code attribute. height Specifies the height of an applet. hspace Defines the horizontal spacing around an applet. mayscript Indicates whether the Java applet is allowed to access the scripting objects of the web page. name Defines the name for an applet (to use in scripts). vspace Defines the vertical spacing around an applet. width Specifies the width of an applet.

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4