Can I have some rel = "alternative" tags for a web page?

In my site I used rel="alternate"RSS as follows

<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://www.mydomain.com/rss" />

Now I want to add another tag rel="alternate"for the mobile site as

<link rel="alternate" media="handheld" href="http://m.mydomain.com" />

Is there a problem using multiple tags rel="alternate"per page or not affecting SEO?

+5
source share
2 answers

This is not a problem; on the contrary, it is even encouraged.

eg. for links to multiple translations of a page; see an example in HTML 4.01: Links and search engines . Or a link to several different channels; see HTML5alternate example : Link type " " . Or a link to several different (= alternative) style sheets.

+5

All Articles