<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<title> Transformiertes Adressbuch </title>
</head>
<body>
<xsl:apply-templates />
</body>
</html>
</xsl:template>
<xsl:template match="Person">
<table border="2"><tr> <xsl:apply-templates /> </tr></table>
</xsl:template>
<xsl:template match="Vorname">
<td> <xsl:value-of select="." /> </td>
</xsl:template>
<xsl:template match="Nachname">
<td> <xsl:value-of select="." /> </td>
</xsl:template>
<xsl:template match="Alter">
<td> <xsl:value-of select="." /> </td>
</xsl:template>
<xsl:template match="Ort">
<td> <xsl:value-of select="." /> </td>
</xsl:template>
</xsl:stylesheet>
|