tags:

views:

76

answers:

3

I just found that google uses this tag for adsense,

but seems it also works without this tag,why they prefer to use it?

+1  A: 

The <ins> tag is used to indicate content that is inserted into a page and indicates changes to a document. According to the HTML spec this was intended primarily for use in marking up versioning of a document.

Clients that aware of this tag may choose to display content inside this tag differently or not at all depending on what they are designed to do. This is very much semantic HTML

As for why Google decide to use it I couldn't say

RobV
+1  A: 

Adding semantics to markup allows tools to extract more meta data from them. Google is in the business of writing such tools, so has good reason to encourage the use of code that they can use.

David Dorward
+1  A: 

INS is semantic tag describing something that is inserted to the text after the text was already published. It is not a big deal, it is I guess used by their robots to understand something they care about.

Ivo Sabev