Web Last Lab Work
Web Last Lab Work
Create style sheet in CSS/XSL and display the document in Internet Explorer
.
XML Code:
<?xml version="1.0" encoding="UTF-8"?>
<catalog>
<cd>
< tle>Empire Burlesque</ tle>
<ar st>Bob Dylan</ar st>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</cd>
<cd>
< tle>Hide your heart</ tle>
<ar st>Bonnie Tyler</ar st>
<country>UK</country>
<company>CBS Records</company>
<price>9.90</price>
<year>1988</year>
</cd>
<cd>
< tle>Greatest Hits</ tle>
<ar st>Dolly Parton</ar st>
<country>USA</country>
<company>RCA</company>
<price>9.90</price>
<year>1982</year>
</cd>
<cd>
< tle>S ll got the blues</ tle>
</cd>
</catalog>
XSL Code:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:template match="/">
<html>
<body>
<h2>My CD Collec on</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th style="text-align:le ">Title</th>
<th style="text-align:le ">Ar st</th>
</tr>
<xsl:for-each select="catalog/cd">
<tr>
<td><xsl:value-of select=" tle"/></td>
<td><xsl:value-of select="ar st"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>