<?xml version="1.0"?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">

<xsl:template match="/">
<html>
<head>
<title>
<xsl:value-of select="sonnet/author/last-name"/>
-
<xsl:value-of select="sonnet/title"/>
</title>
</head>
<body>
    <xsl:apply-templates/>
</body>
</html>
</xsl:template>

<xsl:template match="sonnet">
    <xsl:apply-templates/>
</xsl:template>
  

<xsl:template match="sonnet/title">
<h2>
<xsl:value-of select="."/>
</h2>
</xsl:template>

<xsl:template match="sonnet/lines">
  <xsl:apply-templates/>
</xsl:template>

<xsl:template match="sonnet/lines/line">
  <xsl:value-of select="."/>
  <br/>
</xsl:template>

</xsl:stylesheet>
