htmlmeta

Meta tag for translation


Suppose I have 2 pages on my web site : www.mydomain.com/pageX.html in english and www.mydomain.com/fr/pageX.html being the french translation of the first

Which meta tag am I suppose to use to tell Google that the second is the translation of the first (meta information) ?


Solution

  • The standard way to do this would be:

    <link rel="alternate" hreflang="fr" href="/fr/" title="This document in French">
    

    … and it appears that Google support this standard.