-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmicrodata.html
More file actions
52 lines (51 loc) · 1.49 KB
/
microdata.html
File metadata and controls
52 lines (51 loc) · 1.49 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
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="description"
content="This field contains information about your page. It is usually around two sentences long."
/>
<title>Basic Page Structure</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div>
<section itemscope itemtype="http://schema.org/Person">
<img
itemprop="image"
src="gw.jpg"
alt="George Washington"
align="left"
style="margin-right: '10px'"
/>
<h2 itemprop="name">George Washington</h2>
<p>
I am the first <span itemprop="jobTitle">US President</span>. My
website is:{' '}
<a itemprop="url" href="http://georgewashington.si.edu">
georgewashington.si.edu
</a>
. My address is:
</p>
<address
itemscope
itemtype="http://schema.org/PostalAddress"
itemprop="address"
>
<span itemprop="streetAddress">1600 Pennsylvania Avenue</span>,<br />
<span itemprop="addressLocality">Washington</span>,<br />
<span itemprop="addressRegion">DC</span>,<br />
<span itemprop="postalCode">20500</span>,<br />
<span itemprop="addressCountry">United States</span>.
</address>
</section>
</div>
</body>
</html>