Notes


An Interesting Path

(//tel[1]/@type)[2]


Delivering HTML

1.

<?xml version="1.0"?>
<!--prod-imp.xsl-->
<!--XSLT 1.0 - http://www.CraneSoftwrights.com/training -->
<html xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xsl:version="1.0">
	<head>
		<title>Product Sales Summary</title>
	</head>
	<body>
     <!-- Put everything here -->
	</body>
</html>

2.

<?xml version="1.0" ?>
<xsl:stylesheet  version="1.0"  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"   >
<xsl:output method="html" />
<xsl:template match="/" >
<html>
	<head>
		<title>Product Sales Summary</title>
	</head>
	<body>
    <!-- Put everything here -->
	</body>
</html >
</xsl:template>
</xsl:stylesheet >