Last active
August 29, 2015 14:20
-
-
Save zbycz/0d41aa1466f17b430f40 to your computer and use it in GitHub Desktop.
MI-W20 tutorial 6 http://rawgit.com/zbycz/0d41aa1466f17b430f40/raw/929a4e9a8a31a9eba463b4fb3d6725ee48115d87/org.html
This file contains 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
<!doctype html> | |
<meta charset=utf-8> | |
<title></title> | |
<section itemscope itemtype="http://data-vocabulary.org/Person"> | |
My name is <span itemprop="name">Jindřich Jiný</span> and I work as a <span itemprop="title">post-doc</span> | |
at the <span itemprop="affiliation">Moje organizace Coolname</span>. | |
<section itemprop="address" itemscope itemtype="http://data-vocabulary.org/Address"> My office address is | |
<span itemprop="street-address">Technická 2</span>, <span itemprop="postal-code">16100<span>, | |
<span itemprop="locality">Praha 6</span></section> and you can also visit my homepage at | |
<a href="http://jindirch.org" itemprop="url">jindirch.org</a> | |
</section> |
This file contains 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
<!doctype html> | |
<meta charset=utf-8> | |
<title></title> | |
<div xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Person"> | |
My name is <span property="v:name">Otto Šimánek</span>, | |
but my friends call me <span property="v:nickname">Pan Tau</span>. | |
This is my home page: | |
<a href="http://cs.wikipedia.org/wiki/Pan_Tau" rel="v:url">http://cs.wikipedia.org/wiki/Pan_Tau</a>. | |
I live in fairy-tale and I work as <span property="v:title">magician</span> | |
in the company <span property="v:affiliation">Adventure</span> | |
</div> |
This file contains 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
<!doctype html> | |
<html xmlns:og="http://ogp.me/ns#" xmlns:profile="http://ogp.me/ns/profile#"> | |
<meta charset=utf-8> | |
<title>Jan Opengraf</title> | |
<meta property="profile:first_name" content="Jan" /> | |
<meta property="profile:last_name" content="Opengraf" /> | |
<meta property="profile:username" content="janope1" /> | |
<meta property="profile:gender" content="male" /> | |
<meta property="og:image" content="http://media-imdb.com/rock.jpg" /> |
This file contains 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
<!doctype html> | |
<meta charset=utf-8> | |
<title></title> | |
<div class="vcard"> | |
<h1 class="fn org">Moje organizace Coolname</h1> | |
<div class="adr"> | |
Adresa: | |
<div class="street-address">Technická 2</div> | |
<span class="locality">Praha 6</span>, | |
<span class="postal-code">16100</span> | |
<div class="country-name">CZ</div> | |
</div> | |
<div class="tel"> | |
<span class="type">Obecný telefon</span> +420 773109100 | |
</div> | |
<div>Email: | |
<span class="email">[email protected]</span> | |
</div> | |
<p>Members: | |
<ul> | |
<li> <a href="http://zby.cz/">Pavel Zbytovský Microformat</a> | |
<li> <a href="https://rawgithub.com/zbycz/0d41aa1466f17b430f40/raw/479bce4426fa0fce467f3e308b97ec72cd12948b/2-microdata.html">Jindřich Jiný Microdata</a> | |
<li> <a href="https://rawgithub.com/zbycz/0d41aa1466f17b430f40/raw/64a8e7f07491dfbad9d08868986e172aaf40b4d6/3-rdfa.html">Pan Tau RDFa</a> | |
<li> <a href="https://rawgithub.com/zbycz/0d41aa1466f17b430f40/raw/9c2cbd4b4583113048098ae31a19f6b68a01aa37/4-opengraph.html">Jan Opengraf OpenGraph</a> | |
</ul> | |
</div> | |
<h3>Our applications</h3> | |
<div itemscope itemtype="http://schema.org/SoftwareApplication"> | |
<span itemprop="name">Angry Birds</span> - | |
REQUIRES <span itemprop="operatingSystem">ANDROID</span> | |
<link itemprop="applicationCategory" href="http://schema.org/GameApplication"/> | |
RATING: | |
<div itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating"> | |
<span itemprop="ratingValue">4.6</span> ( | |
<span itemprop="ratingCount">8864</span> ratings ) | |
</div> | |
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer"> | |
Price: $<span itemprop="price">1.00</span> | |
<meta itemprop="priceCurrency" content="USD" /> | |
</div> | |
</div> | |
<h3>Our events</h3> | |
<div> | |
<div itemtype="http://schema.org/Event" itemscope> | |
<strong itemprop="name">Launching Angry Birds</strong> | |
<a itemprop="url" href="http://example.com/tourdates.html" />Tour dates</a> | |
<div itemprop="location" itemtype="http://schema.org/Place" itemscope> | |
<span itemprop="address">7 S. Broadway, Denver, CO 80209</span><br> | |
</div> | |
Začíná už <span itemprop="startDate">2013-09-14T21:30</span> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment