Created
February 13, 2014 16:37
-
-
Save keithamus/8978646 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div itemscope itemtype="http://schema.org/Thing"></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div itemscope itemtype="http://schema.org/Person"> | |
<p itemprop="name"><span itemprop="givenName">Keith</span> <span itemprop="familyName">Cirkel</span></p> | |
<p itemprop="jobTitle">JavaScript Consultant</p> | |
<a href="http://keithcirkel.co.uk" itemprop="url">keithcirkel.co.uk</a> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<h1 class="logo">Sherlock Redemption</h1> | |
<h2 class="written-by">written by M. Night Shyamalan</h2> | |
<h2 class="directed-by">directed by M. Night Shyamalan</h2> | |
<ul class="bill-of-actors"> | |
<li>Robert Downey JR</li> | |
<li>Liam Neeson</li> | |
<li>Natalie Portman</li> | |
</ul> | |
<div class="trailer-play"> | |
<a href="/trailer">Click to watch the trailer</a> | |
</div> | |
<footer> | |
<p>© <a href="http://www.universalstudios.com/">Universal Studios</a> 2013</p> | |
</footer> | |
</body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body itemscope itemtype="http://schema.org/Movie"> | |
<h1 class="logo" itemprop="name">Sherlock Redemption</h1> | |
<h2 class="written-by" itemprop="director author" itemscope itemtype="http://schema.org/Person">written by <span itemprop="name">M. Night Shyamalan</span></h2> | |
<ul class="bill-of-actors"> | |
<li itemprop="actor" itemscope itemtype="http://schema.org/Person"><span itemprop="name">Robert Downey JR</span></li> | |
<li itemprop="actor" itemscope itemtype="http://schema.org/Person"><span itemprop="name">Liam Neeson</span></li> | |
<li itemprop="actor" itemscope itemtype="http://schema.org/Person"><span itemprop="name">Natalie Portman</span></li> | |
</ul> | |
<div class="trailer-play"> | |
<a href="/trailer" itemprop="trailer">Click to watch the trailer</a> | |
</div> | |
<footer> | |
<p>© <span itemprop="copyrightHolder publisher" itemscope itemtype="http://schema.org/Corporation"><a itemprop="url name" href="http://www.universalstudios.com/">Universal Studios</a></span> <span itemprop="copyrightYear">2013</span></p> | |
</footer> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment