1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Fiche personnelle</title>
</head>
<body>
<section itemscope itemtype="http://schema.org/Person">
Photo : <br /><img src="photo.jpg" itemprop="image" alt="Al Colik"/><br />
Titre : <span itemprop="honorificPrefix">M.</span><br />
Prénom : <span itemprop="givenName">Al</span><br />
Nom : <span itemprop="familyName">Colik</span><br />
Sexe : <span itemprop="gender">homme</span><br />
Mail : <a href="mailto:xyz@xyz.com" itemprop="email">xyz@xyz.com</a><br />
Anniversaire : <time itemprop="birthDate" datetime="2009-05-10">10 mai 2009</time>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
Adresse : <span itemprop="streetAddress">3 rue bidon</span><br />
Code postal : <span itemprop="postalCode">75000</span><br />
Ville : <span itemprop="addressLocality">Paris</span><br />
Département : <span itemprop="addressRegion">Paris</span><br />
</div>
Téléphone : <span itemprop="telephone">0000000000</span><br />
Site personnel : <a href="www.alcolik.com" itemprop="url">www.alcolik.com</a><br />
Profession : <span itemprop="jobTitle">Buveur</span><br />
Entreprise : <span itemprop="worksFor">Ricard</span><br />
connaissances : <br />
<a href="www.ecole.com/etudiants/toto.html" itemprop="knows">Toto</a><br />
<div itemprop="homeLocation" itemscope itemtype="http://schema.org/Place">
Carte du lieu d'habitation : <object itemprop="maps" data="http://maps.google.com/maps?ie=UTF8&ll=43.402,3.697&spn=0.006035,0.013154&t=h&z=16&output=embed"></object><br/>
</div>
</section>
</body>
</html> |
Partager