Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

RDF tutorial


May 23, 2021 RDF


Table of contents


RDF tutorial

RDF means the Resource Description Framework, a markup language used to describe Web resources.

RDF (Resource Description Framework) is a W3C standard that describes network resources, such as the title, author, date of modification, content, and copyright information for a Web page.

Start learning RDF (Resource Description Framework) now!

An instance of an RDF document

<?xml version="1.0"?>

<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:si="//www.w3cschool.cn/rdf/">

<rdf:Description rdf:about="http://www.w3cschool.cn">
<si:title>W3CSchool</si:title>
<si:author>Jan Egil Refsnes</si:author>
</rdf:Description>

</rdf:RDF>

In the next section, you'll learn more about the RDF concept.