<!doctype html> <html> <!-- shamelessly stolen from http://schema.org/Person --> <head> <title>person example</title> </head> <body> <div itemid="http://www.xyz.edu/~jane" itemscope itemtype="http://schema.org/Person"> <span itemprop="name">Jane Doe</span> <img src="janedoe.jpg" itemprop="image" /> <span itemprop="jobTitle">Professor</span> <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <span itemprop="streetAddress"> 20341 Whitworth Institute 405 N. Whitworth <!-- Comment Node --> <script> // Unrelated text </script> </span> <span itemprop="addressLocality">Seattle</span>, <span itemprop="addressRegion">WA</span> <span itemprop="postalCode">98052</span> </div> <span itemprop="telephone">(425) 123-4567</span> <a href="mailto:jane-doe@xyz.edu" itemprop="email">jane-doe@xyz.edu</a> Jane's home page: <a href="http://www.janedoe.com" itemprop="url">janedoe.com</a> Graduate students: <a href="http://www.xyz.edu/students/alicejones.html" itemprop="colleagues"> Alice Jones</a> <a href="http://www.xyz.edu/students/bobsmith.html" itemprop="colleagues"> Bob Smith</a> </div> </body> </html>