RDF
Resource Description Framework represents information on the web.
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="http://example.org/Alice">
<name>Alice</name>
<age>25</age>
</rdf:Description>
</rdf:RDF>
Summary
- RDF uses triples: subject-predicate-object
- Foundation for the Semantic Web
YouTip