Najnowsze tutoriale tworzenie stron internetowych
 

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


<Pełna RSS referencyjny

Definicja i Wykorzystanie

<channel> Element opisuje RSS, i ma trzy wymagane elementy podrzędne:

  • <title> - definiuje tytuł kanału (eg w3ii Home Page)
  • <link> - definiuje hiperłącze do kanału (eg http://www.w3ii.com)
  • <description> - Opisuje kanał (eg Free web building tutorials)

Przykład

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

Spróbuj sam "

<Pełna RSS referencyjny