<?xml version="1.0"?>
<rss version="2.0">

<channel>
<title>My Podcast</title>   //The title for the podcast
<description>
This is my first podcast.</description> //Write a brief description of what the podcast is about.
<link>http://myweb.usf.edu/~NetID/index.html</link>  //The URL for your website.
<copyright>2006, John Smith</copyright>  //Copyright information for the podcast.


<item>  
<title>Episode 1</title>    //The title for an individual episode
<description>This is the first episode of my new podcast.</description>   //A short description of the individual episode.
<link>http://myweb.usf.edu/~NetID/index.html</link>   //The URL for your website
<enclosure url="http://myweb.usf.edu/~NetID/filename.m4a" length="92606" type="audio/x-m4a">
</enclosure>
/*The URL points to the media file on the web server, the size has to be in bytes (not 92.6KB but 92606, you can get this by Control or Right-clicking a file and selecting Get Info), the type will depend on what type of file you're using but for enhanced podcasts it's audio/x-m4a.*/
</item>

//Add a new item section each time you have a new episode.

</channel>
</rss>

