Derniers tutoriels de développement web
 

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


<Complete RSS Référence

Définition et utilisation

Le <channel> élément décrit le flux RSS, et a trois éléments requis de l' enfant:

  • <title> - Définit le titre du canal (eg w3ii Home Page) d' (eg w3ii Home Page)
  • <link> - Définit le lien hypertexte vers le canal (eg http://www.w3ii.com)
  • <description> - Décrit le canal (eg Free web building tutorials)

Exemple

<?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>

Essayez - le vous - même »

<Complete RSS Référence