<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">

	<xsl:template match="/">
		<html>
 			<head>
 				<title>your title</title>
 			</head>
 			<body>
 				<xsl:apply-templates select="*"/>
 			</body>
 		</html>
	</xsl:template>

	<xsl:template match="Changes">
		<xsl:apply-templates/>
	</xsl:template>

	<xsl:template match="Change">
		<b>Change</b>
		<br/>
		<xsl:for-each select="@*">
			<dd/>
			<xsl:value-of select="name(.)"/>
			 = 
			<xsl:value-of select="."/>
			<br/>
		</xsl:for-each>
		<xsl:apply-templates/>
	</xsl:template>

	<xsl:template match="Source">
		<b>Source</b>
		<br/>
		<xsl:for-each select="@*">
			<dd/>
			<xsl:value-of select="name(.)"/>
			 = 
			<xsl:value-of select="."/>
			<br/>
		</xsl:for-each>
	</xsl:template>

	<xsl:template match="Target">
		<b>Target</b>
		<br/>
		<xsl:for-each select="@*">
			<dd/>
			<xsl:value-of select="name(.)"/>
			 = 
			<xsl:value-of select="."/>
			<br/>
		</xsl:for-each>
	</xsl:template>

	<xsl:template match="Connection">
		<b>Connection</b>
		<br/>
		<xsl:for-each select="@*">
			<dd/>
			<xsl:value-of select="name(.)"/>
			 = 
			<xsl:value-of select="."/>
			<br/>
		</xsl:for-each>
	</xsl:template>

</xsl:stylesheet>


