-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathexample-dirty.html
More file actions
40 lines (36 loc) · 1.41 KB
/
example-dirty.html
File metadata and controls
40 lines (36 loc) · 1.41 KB
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
<!doctype html>
<html>
<!-- shamelessly stolen from http://schema.org/Person -->
<head>
<title>person example</title>
</head>
<body>
<div itemid="http://www.xyz.edu/~jane" itemscope itemtype="http://schema.org/Person">
<span itemprop="name">Jane Doe</span>
<img src="janedoe.jpg" itemprop="image" />
<span itemprop="jobTitle">Professor</span>
<div itemprop="description">A Professor that likes<br>Linebreaks</div>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="streetAddress">
<p>20341 Whitworth Institute</p><p>405 N. Whitworth</p>
<!-- Comment Node -->
<script>
// Unrelated text
</script>
</span>
<span itemprop="addressLocality">Seattle</span>,
<span itemprop="addressRegion">WA</span>
<span itemprop="postalCode">98052</span>
</div>
<span itemprop="telephone">(425) 123-4567</span>
<a href="mailto:jane-doe@xyz.edu" itemprop="email">jane-doe@xyz.edu</a>
Jane's home page:
<a href="http://www.janedoe.com" itemprop="url">janedoe.com</a>
Graduate students:
<a href="http://www.xyz.edu/students/alicejones.html" itemprop="colleagues">
Alice Jones</a>
<a href="http://www.xyz.edu/students/bobsmith.html" itemprop="colleagues">
Bob Smith</a>
</div>
</body>
</html>