Home » XML Basics » 10 - RDF
10

What is RDF

In this section, you will know about the basic Resource Description Framework syntax.

RDF stands for Resource Description Framework. It is basically used to describe resources that are on the web. It is designed to be understood and read by computers and not read by the normal web surfer. It is written in XML so you should not have any trouble learning how to use RDF.

Basic RDF Syntax

Using RDF is very simple. First, declare your XML version with the code below.


<?xml version="1.0"?>

Enclose the entire XML with the RDF tags as shown below.


<RDF>

...
all your descriptions about the resource
...

</RDF>


That's it! You shouldn't have any trouble learning RDF.