forked from ChelseaKR/ctdl-validate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram_rdfa.html
More file actions
21 lines (21 loc) · 894 Bytes
/
Copy pathprogram_rdfa.html
File metadata and controls
21 lines (21 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<!-- Synthetic RDFa page: Lite attributes plus one Core attribute to report. -->
<html lang="en">
<body prefix="sdo: https://schema.org/">
<div vocab="https://schema.org/" typeof="Organization" resource="#college">
<h1 property="name">Example Community College</h1>
<p property="description" lang="fr">Un college communautaire.</p>
<a property="subjectWebpage" href="/about">About</a>
</div>
<div typeof="sdo:Organization" resource="#second">
<span property="sdo:name">Example Extension Campus</span>
</div>
<div vocab="https://schema.org/" typeof="EducationalOccupationalProgram" resource="#program">
<span property="name">Welding Technology Certificate</span>
<span property="timeToComplete">P6M</span>
</div>
<div vocab="https://schema.org/" about="#legacy" typeof="Organization">
<span property="name">Uses an RDFa Core attribute</span>
</div>
</body>
</html>