0

Can somebody explain me the difference between following two markups:

<link itemprop="itemCondition" href="http://schema.org/NewCondition "/>

and

<meta itemprop="itemCondition" content="http://schema.org/NewCondition" />

Are they fully identical? Is there any semantic difference?

Thanks a lot for your explanations!

Evgeniy
  • 2,337
  • 2
  • 28
  • 68

1 Answers1

2

They should amount to the same thing in your examples. Generally though, the href attribute value on the link element is subject to being resolved while the content attribute value on the meta element will be used as is.

Alohci
  • 78,296
  • 16
  • 112
  • 156