How to use hreflang for language annotations URLs in HTML

3 Answers

0 votes
<!DOCTYPE html>
<html>
  
<head>
</head>
  
<body>

<a id="a-id" hreflang="en-us" href="http://www.collectivesolver.com/">collectivesolver</a>

</body>
</html>

 



answered Aug 12, 2015 by avibootz
0 votes
<!DOCTYPE html>
<html>
  
<head>
</head>
  
<body>

<a id="a-id" rel="alternate" hreflang="es-es" href="http://es.collectivesolver.com/">cs</a>

</body>
</html>

 



answered Aug 12, 2015 by avibootz
edited Aug 12, 2015 by avibootz
0 votes
<!DOCTYPE html>
<html>
  
<head>
</head>
  
<body>

<a id="a-id" rel="alternate" hreflang="he-il" href="http://he.collectivesolver.com/">cs</a>

</body>
</html>

 



answered Aug 12, 2015 by avibootz
...