Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match="/">
<html>
<body bgcolor="white">
<table border="0">
<xsl:for-each select="Titles/TITLES" >
<tr bgcolor="lightblue"><td>Title -
</td><td><b><xsl:value-of
select="@title"/></b></td></tr>
<tr><td>Pub ID - </td><td><xsl:value-of
select="@pub_id"/></td></tr>
<tr><td>Price - </td><td>$<xsl:value-of
select="@price"/></td></tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>