Usage Examples

Indicate all media elements on the page are public domain:

<meta name="rights-standard" content=";PD" />

Given:

<img id="bar" src="foo.png" ... />

Indicate 'foo.png' is licensed "CreativeCommons by Attribution, Non Commercia"l:

<meta name="rights-standard" content="foo;cc by-nc" />

Given:

<object id="somevid" width="425" height="349">

  <param name="movie" value="http://www.example.com/v/ele96_sc4h8?version=2&hl=en_US"></param>

</object>

Indicate the video is licensed "Creative Commons by Attribution":

<meta name="rights-standard" content="somevid;cc by-sa" />

Given:

<img id="one" src="example-1.png" ... />

<img id="another" src="example-2.png" ... />

Indicate 'example-1.png' is licensed "CreativeCommons by Attribution, Non Commercial, No Derivatives" and 'example-2.png' is public domain:

<meta name="rights-standard" content="one;cc by-nc-nd" />

<meta name="rights-standard" content="another;pd" />