Usage of the Rel Attribute in Microformats (licence, tag, nofollow)


/ Published in: HTML
Save to your folder(s)

Simple usage of the rel attribute in your HTML using microformats.


Copy this code and paste it in your HTML
  1. <!-- rel-licence -->
  2. <!-- Links to the licence document for the page in question -->
  3. <!--
  4. NOTE: If embedded inside hReview, the licence is for that review,
  5. not the whole document
  6. -->
  7. <a href="http://www.creativecommons.org/..." rel="licence">Licence</a>
  8.  
  9. <!-- rel-tag -->
  10. <!-- Tags the page, or a large part of the page as being about microformats -->
  11. <!--
  12. NOTE: When used inside another microformat (hAtom), it applies to that
  13. microformat, not the whole page
  14. -->
  15. <a href="http://technorati.com/tag/microformats" rel="tag">microformats</a>
  16.  
  17. <!-- rel-nofollow -->
  18. <!-- The page linked to will gain no PageRank from the link -->
  19. <!--
  20. NOTE: Google follows the link, no PageRank added
  21. MSN: Page isn't followed, doesn't index the page
  22. Yahoo: Follows the link and indexes the page
  23. -->
  24. <a href="http://www.bbc.co.uk/" rel="nofollow">BBC Site</a>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.