<?xml version="1.0" encoding="UTF-8"?><!-- DWXMLSource="vagts_assg_04a.xslt" -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:template match="country">
		<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
			<head>
				<title>Karen Vagts: XML Portfolio - XSL Example No. 1</title>
				<link href="css/assignmentstyles.css" rel="stylesheet" type="text/css" media="screen"/>
			</head>
			<body>
				<xsl:apply-templates/>
			</body>
		</html>
	</xsl:template>
	<xsl:template match="spain">
	<p>
<xsl:value-of select="."/>
</p>
	</xsl:template>
</xsl:stylesheet>