<전체 RSS 참조
정의 및 사용
<channel> 요소는 RSS 피드를 설명하고, 세 가지 필수 자식 요소가 있습니다 :
- <title> - 채널의 제목을 정의합니다 (eg w3ii Home Page)
- <link> - 채널에 하이퍼 링크를 정의합니다 (eg http://www.w3ii.com)
- <description> - 채널을 설명합니다 (eg Free web building tutorials)
예
<?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>
»그것을 자신을 시도
<전체 RSS 참조