Open In App
Related Articles

HTML5 translate Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

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.
Supported Tags: It supports all HTML elements. 

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: 
 

html




<!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


Output: 
 

Supported Browsers: 

  • Google Chrome 19 and above
  • Edge 79 and above
  • Opera 15 and above
  • Safari 6 and above
     
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 09 Jun, 2023
Like Article
Save Article
Similar Reads
Related Tutorials