Open In App

HTML | applet alt Attribute

Last Updated : 13 Jan, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The HTML applet alt attribute is used to specify the alternate text for an applet element. It is useful when the applet element not displayed. It is used to give alternative information for an applet element.

Note: This attribute is not supported by HTML5.

Syntax:

<applet alt="text">

Attribute Values: It contains single value text which specifies the alternative text for an applet element.

Example:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML applet alt attribute
    </title>
</head>
  
<body>
    <applet code="HelloWorld" alt="GeeksForGeeKs"
            width=200 height=60 name="geeks"
    </applet
  
    <h1>
        HTML applet alt attribute
    </h1>
      
    <h2>Hello GeeksForGeeks</h2>
      
    <p>
        a computer science
        portal for Geeks 
    </p>
</body
  
</html>  


Output:

Supported Browsers: The browser supported by HTML applet alt attribute are listed below:

  • Firefox
  • Safari

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads