HTML5 | translate Attribute
The translate attribute in HTML is used to specify whether the content of an element is translated or not. This attribute is new in HTML5.
Syntax:
<element translate = "yes|no">
Attribute Values: The translate attribute contains two value which are listed below:
- yes: This attribute is used to specify that the content of element can be translated.
- no: This attribute is used to specify that the content of element can not be translated.
Example:
<!DOCTYPE html> <html> <head> <title>translate attribute</title> <style> body { text-align:center; } h1 { color:green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2><strong >translate attribute</strong></h2> <p translate="no">Don't translate this!</p> <p>This can be translated to any language.</p> </body> </html> |
chevron_right
filter_none
Output:

Supported Browsers: Major browsers are not supported by translate Attribute.
Recommended Posts:
- HTML5 | date attribute in <input> Tag
- CSS | translate() Function
- p5.js | translate() function
- PHP | ImagickDraw translate() Function
- HTML | canvas translate() Method
- How To Add Google Translate Button On Your Webpage?
- HTML5 | rp Tag
- HTML5 | <aside> Tag
- HTML5 | rt Tag
- HTML5 | <meter> Tag
- HTML5 | Introduction
- HTML5 | <ruby> Tag
- HTML5 | mark Tag
- HTML5 | fieldset Tag
- HTML5 | figcaption Tag
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



