Assign css or xsl to a webpage with external xml source

wxdqz

New Member
Hi newby to xml

I currently created a page that links to the xml file from cnet.com I am able to see the information from cnet.com but I am not sure how to attach a css style sheet or xsl file to an external link. This is the code that I have right now. Basically I am trying to create my own feeds using the xml.load method I just need to know how to format the look of the data.

Thanks

Code
--------------------------------
<html>
<head>
<script language = "VBScript">

set xmlDoc=CreateObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("http://news.com.com/2547-1_3-0-5.xml")

for each x in xmlDoc.documentElement.childNodes
document.write("<div><ul><li>" & x.text & "</li></ul></div>")
next
</script>
</head>
<body>

</body>
</html>
 
Back
Top