<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:template match="/geology">
        <html>
            <head>
                <title>Volcanoes</title>
            </head>
            <body>
                <h1>Volcanoes</h1>
                <table width="75%" border="1">
                    <tr>
                        <th>Name</th>
                        <th>Location</th>
                        <th>Height</th>
                        <th>Type</th>
                    </tr>
                    <xsl:for-each select="volcano">
                        <tr>
                            <td><xsl:value-of select="@name"/></td>
                            <td><xsl:value-of select="location"/></td>
                            <td><xsl:value-of select="height/@value"/>
             <xsl:value-of select="height/@unit"/></td>
                            <td><xsl:value-of select="type"/></td>
                        </tr>
                    </xsl:for-each>
                </table>
            </body>
        </html>
    </xsl:template>
</xsl:stylesheet>

