Display link content rel="" in html page?

2

I am trying to make an RSS reader, I researched and for that I used:

<link rel="alternate"  type="application/rss+xml" title="RSS" href="http://www.feedroll.com/rssviewer/feed2js.php?src=http%3A%2F%2Fwww.gsmfans.org%2Findex.php%3Ftype%3Drss%3Baction%3D.xml&num=25&desc=1&au=y&date=y&tz=-3&targ=y&utf=y&pc=y"> 

How do I display the content that he has read from this page on my page? That is, how do I show the content of this page on my page?

    
asked by anonymous 27.05.2015 / 22:01

1 answer

1

How you are using this feed2js to grab the feed, and add to the page use the script like this:

<script language="JavaScript" src="http://www.feedroll.com/rssviewer/feed2js.php?src=http%3A%2F%2Fwww.gsmfans.org%2Findex.php%3Ftype%3Drss%3Baction%3D.xml&num=25&desc=1&au=y&date=y&tz=-3&targ=y&utf=y&pc=y"charset="UTF-8" type="text/javascript"></script>

If you want to style the content, see that the script generates a structure with ul's and li's.

    
27.05.2015 / 22:44