<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">



<html>
<head>
	<title>The Inhabited Worlds of the Known Galaxies</title>
</head>

<body>

	<h1>Listing of the Galaxies</h1>
	
	<ul>
	
	<xsl:for-each select="universe/galaxy">
		<li><em><xsl:value-of select="@name">
				</xsl:value-of>
			</em>
		</li>
	</xsl:for-each>
	
	</ul>

</body>
</html>

</xsl:template>
</xsl:stylesheet>

