I have a XML/RSS feed I created with a generator and I'm trying to embed it into my HTML website, I tried to do it in this way
<div class="col-sm">
<embed src="./rss/latamreuters.xml" type="text/xmldata">
</div>
But it isn't rendering anything. When I removed the type it threw me this error:
This XML file does not appear to have any style information associated with it. The document tree is shown below.
What does this mean? Do I have some kind of syntax error in my XML file? is this not the way I should be embedding it? What could I do?
If that helps I'm not using a pure HTML page, I am using Vue js.