Ultimele tutoriale de dezvoltare web
 

RSS <title> , <link> , and <description> Elements


<Complete RSS referință

Definiție și utilizare

<channel> Element descrie RSS feed, și are trei elemente de copil obligatorii:

  • <title> - Definește titlul canalului (eg w3ii Home Page) de (eg w3ii Home Page) , (eg w3ii Home Page)
  • <link> - Definește hyperlink către canalul (eg http://www.w3ii.com) de (eg http://www.w3ii.com) , (eg http://www.w3ii.com)
  • <description> - Descrie canalul (eg Free web building tutorials) de (eg Free web building tutorials) , (eg Free web building tutorials) de (eg Free web building tutorials) de (eg Free web building tutorials)

Exemplu

<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">

<channel>
   <title>w3ii Home Page</title>
  <link>http://www.w3ii.com</link>
  <description>Free web building tutorials</description>

</channel>

</rss>

Încearcă - l singur »

<Complete RSS referință