Skip to content

Instantly share code, notes, and snippets.

@niklasl
Created August 17, 2013 03:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niklasl/6255163 to your computer and use it in GitHub Desktop.
Save niklasl/6255163 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Using about with a table</title>
</head>
<body>
<table vocab="http://schema.org/">
<tr>
<th>Who</th>
<td about="#a" typeof="MusicEvent" property="performer name">Tub Ring</td>
<td about="#b" typeof="MusicEvent" property="performer name">Cake</td>
</tr>
<tr>
<th>When</th>
<td about="#a"><time property="startDate" datetime="2010-01-01">The Big Fool Day!</time></td>
<td about="#b"><time property="startDate" datetime="2010-12-25">Jingle Bells!</time></td>
</tr>
<tr>
<th>Where</th>
<td about="#a" property="location">Atlantis!</td>
<td about="#b" property="location">The North Pole!</td>
</tr>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment