Skip to content

Instantly share code, notes, and snippets.

@scor
Last active December 11, 2015 11:38
Show Gist options
  • Save scor/4595196 to your computer and use it in GitHub Desktop.
Save scor/4595196 to your computer and use it in GitHub Desktop.
RDFa Lite markup example describing an organization in HTML head element
<html vocab="http://schema.org/">
<head>
<meta resource="http://my-company.com/" typeof="Organization" />
<meta resource="http://my-company.com/" property="name" content="my company name" />
<meta resource="http://my-company.com/" property="telephone" content="0000-0000" />
<link about="http://my-company.com/" property="address" href="http://my-company.com/#address" />
<meta resource="http://my-company.com/#address" typeof="PostalAddress" />
<meta resource="http://my-company.com/#address" property="streetAddress" content="38 avenue de l'Opera" />
<meta resource="http://my-company.com/#address" property="postalCode" content="98052" />
<meta resource="http://my-company.com/#address" property="addressLocality" content="Seattle" />
<meta resource="http://my-company.com/#address" property="addressRegion" content="WA" />
</head>
<body>
you body content here...
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment