Created
April 3, 2012 03:46
-
-
Save boyofgreen/2289138 to your computer and use it in GitHub Desktop.
HTML5 Hacks 2.10
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
<li itemscope> | |
<ul> | |
<li>Name: <span itemprop=”name”>Fred</span></li> | |
<li>Phone: <span itemprop=”telephone”>210-555-5555</span></li> | |
<li>Email: <span itemprop=”email”>[email protected]</span></li> | |
</ul> | |
</li> |
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
<ul class="unstyled"> | |
<li itemscope class="contact"> | |
<ul class="well"> | |
<li>Name: <span itemprop=”name”>Fred</span></li> | |
<li>Phone: <span itemprop=”telephone”>210-555-5555</span></li> | |
<li>Email: <span itemprop=”email”>[email protected]</span></li> | |
</ul> | |
</li> | |
<li itemscope class="contact"> | |
<ul class="well"> | |
<li>Name: <span itemprop=”name”>Wilma</span></li> | |
<li>Phone: <span itemprop=”telephone”>210-555-7777</span></li> | |
<li>Email: <span itemprop=”email”>[email protected]</span></li> | |
</ul> | |
</li> | |
<li itemscope class="contact"> | |
<ul class="well"> | |
<li>Name: <span itemprop=”name”>Betty</span></li> | |
<li>Phone: <span itemprop=”telephone”>210-555-8888</span></li> | |
<li>Email: <span itemprop=”email”>[email protected]</span></li> | |
</ul> | |
</li> | |
<li itemscope class="contact"> | |
<ul class="well"> | |
<li>Name: <span itemprop=”name”>Barny</span></li> | |
<li>Phone: <span itemprop=”telephone”>210-555-0000</span></li> | |
<li>Email: <span itemprop=”email”>[email protected]</span></li> | |
</ul> | |
</li> | |
</ul> |
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
document.getItems(); |
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
<li itemscope itemtype="http://example.com/feline"> | |
<ul> | |
<li>Name: <span itemprop=”name”>Dino</span></li> | |
<li>Phone: <span itemprop=”telephone”>210-555-4444</span></li> | |
<li>Email: <span itemprop=”email”>[email protected]</span></li> | |
</ul> | |
</li> |
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
document.getItems("http://example.com/feline"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment