<?xml version="1.0" encoding="ISO-8859-1"?>

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
	<html>
	<head>
		<link href="teststyle.css" rel="stylesheet" type="text/css" />
	</head>
	
	<body>
		<div class="text">
			Your browser supports XSLT!<p/>
			You should see a yellow box with a red outline and black text below here:
		</div>
		<div class="yellowbox">
			Hello world!
		</div>
		
	</body>
	</html>
</xsl:template>

</xsl:stylesheet>




