-
Notifications
You must be signed in to change notification settings - Fork 0
/
8.microdata.html
118 lines (110 loc) · 3.1 KB
/
8.microdata.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Microdata</title>
<link rel="shortcut icon" href="favicon.png" />
<link rel="stylesheet" href="style.css" type="text/css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript" src="modernizr.js"></script>
<!--[if lt IE 9]>
<script>
var e = ("abbr,article,aside,audio,canvas,datalist,details," +
"figure,footer,header,hgroup,mark,menu,meter,nav,output," +
"progress,section,time,video").split(',');
for (var i = 0; i < e.length; i++) {
document.createElement(e[i]);
}
</script>
<![endif]-->
</head>
<body>
<header>
<hgroup>
<h1>AC Partners</h1>
<h2>HTML5 Elements Sample</h2>
</hgroup>
<nav>
<!--<a href="#" id="skipLink">Skip Navigation Link</a>-->
<ul>
<li><a href="#">home</a></li>
<li><a href="#">blog</a></li>
<li><a href="#">gallery</a></li>
<li><a href="#">about</a></li>
</ul>
</nav>
</header>
<!-- All articles could be grouped inside a 'section' -->
<article>
<header>
<time datetime="2013-03-18" pubdate="pubdate">18 maart 2013</time>
<h1>
<a href="#">Microdata for the win</a>
</h1>
</header>
<p itemscope itemtype="http://schema.org/Person">
Hello, my name is
<span itemprop="name">John Doe</span>,
I am a
<span itemprop="jobTitle">graduate research assistant</span>
at the
<span itemprop="affiliation">University of Dreams</span>.
My friends call me
<span itemprop="additionalName">Johnny</span>.
You can visit my homepage at
<a href="http://www.JohnnyD.com" itemprop="url">www.JohnnyD.com</a>.
<section itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
I live at
<span itemprop="streetAddress">1234 Peach Drive</span>,
<span itemprop="addressLocality">Warner Robins</span>,
<span itemprop="addressRegion">Georgia</span>.
</section>
<a href="http://www.google.com/webmasters/tools/richsnippets" target=_blank>Test it!</a>
</p>
</article>
<article>
<header>
<time datetime="2013-03-17" pubdate="pubdate">17 maart 2013</time>
<h1>
<a href="#">Check this movie!</a>
</h1>
</header>
<p>
<div itemscope itemtype ="http://schema.org/Movie">
<h1 itemprop="name">Avatar</h1>
<div itemprop="director" itemscope itemtype="http://schema.org/Person">
Director: <span itemprop="name">James Cameron</span>
(born <span itemprop="birthDate">August 16, 1954)</span>
</div>
<span itemprop="genre">Science fiction</span>
<a href="trailer.html" itemprop="trailer">See Trailer</a>
</div>
</p>
</article>
<article>
<header>
<time datetime="2013-01-01" pubdate="pubdate">New Year 2013</time>
<h1>
<a href="#">Happy New Year everyone!</a>
</h1>
</header>
<p>
Things to do this year:<br>
<ul>
<li>Have fun</li>
<li>Learn HTML5</li>
<li>Get rich</li>
</ul>
</p>
</article>
<footer>
<nav>
<ul>
<li><a href="#">Contact us</a></li>
<li><a href="#">Credits</a></li>
<li><a href="9.canvas.html">Moving on...</li>
</ul>
</nav>
</footer>
</body>
</html>