Latest web development tutorials

RSS 제목, 링크 및 설명 요소

RSS 참조 RSS 전체 참조 설명서

정의 및 사용

<아이템> 요소는 문서의 RSS 피드를 정의 요소는 세 가지 필수 자식 요소가 있습니다 :

  • <제목> - (예 : RSS 자습서) 프로젝트의 제목을 정의
  • <링크> - 프로젝트에 울트라 정의 연결 (예 : HTTP : //www.w3cschool.cc/rss/)
  • <설명> - 프로젝트에 대한 설명 (예 : w3school 최신 RSS 자습서)

<?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>
</item>
<item>
<title>XML Tutorial</title>
<link>http://www.w3cschool.cc/xml</link>
<description>New XML tutorial on W3CSchool</description>
</item>

</channel>
</rss>

»시도

RSS 참조 RSS 전체 참조 설명서