HTML | applet name Attribute Last Updated : 18 Feb, 2022 Comments Improve Suggest changes Like Article Like Report The HTML | applet name attribute is used to specify the name of a <applet> element. Note : This attribute is not supported by HTML5. Syntax: <applet name="name"> Attribute Values: It contains a single value name that describes the name of the applet element. Example: html <!DOCTYPE html> <html> <head> <title> HTML | applet name attribute </title> </head> <body> <applet code="HelloWorld" width=200 height=60 name="geeks"> </applet> <h2> Hello GeeksForGeeks </h2> <p> a computer science portal for Geeks </p> </body> </html> Output: Supported Browsers: The browser supported by HTML applet name attribute are listed below: Firefox Safari Comment More infoAdvertise with us Next Article HTML | applet name Attribute M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-Attributes Similar Reads HTML name Attribute The HTML name attribute labels elements, notably form inputs, identifying them for data submission. It's crucial for form processing and is often used in JavaScript DOM manipulation. Unique within a form.Note: This attribute has been DEPRECATED and is no longer recommended.Supported tags:ElementDesc 3 min read HTML | applet width Attribute The HTML applet width attribute is used to specify the width of an <applet> element. Note: This attribute is not supported by HTML5. Syntax: <applet width="pixels"> Attribute Values: pixels: It contains the pixels value that specifies the width of the applet element. Example: html <!D 1 min read HTML | applet alt Attribute 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 1 min read HTML alt attribute The alt attribute in HTML provides alternative text for images, aiding accessibility and providing context for screen readers.Syntax:<img src=" " alt=" " >HTML<html> <body> <h1>GeeksforGeeks Logo</h1> <img src="https://media.geeksforgeeks.org/wp-content/uploads/20190 3 min read HTML | <applet> vspace Attribute The applet vspace attribute is used to specify the number of whitespaces on the bottom and top side of an applet element. Syntax: <applet vspace="pixels"> Attribute Values: pixels: It specifies the number of whitespaces on top and bottom of applet element in terms of pixels. Below example illu 1 min read Like