Latest web development tutorials

RSS enclosure Element

RSS Reference RSS complete reference manual

Definition and Usage

<Enclosure> element allows media files included in the project.


Attributes

Attributes description
length Required. Defines the length of the media file (in bytes).
type Required. Define the type of media file.
url Required. Defines the URL of the media file.


Examples

<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">

<channel>
<title>W3CSchool Home Page</title>
<link>http://www.w3cschool.cc</link>
<description>Free web building tutorials</description>
<item>
<title>RSS Tutorial</title>
<link>http://www.w3cschool.cc/rss</link>
<description>New RSS tutorial on W3CSchool</description>
<enclosure url="http://www.w3cschool.cc/media/3d.wmv"
length="78645" type="video/wmv" />

</item>
</channel>

</rss>

try it"

RSS Reference RSS complete reference manual