<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="anchors.xsl"?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

	<xsl:output method="html" indent="yes"/>

	<xsl:template match="/">
		<html>
			<head>
				<title>anchors</title>
				<style type="text/css">div {padding-bottom: 800px;}</style>
			</head>
			<body>
				<div>
					<p>contents</p>
					<ul>
						<li><a href="#s1">Section 1</a></li>
						<li><a href="#s2">Section 2</a></li>
						<li><a href="#s3">Section 3</a></li>
					</ul>
				</div>
				<div><a id="s1"></a><h1>Section 1</h1></div>
				<div><a id="s2"></a><h1>Section 2</h1></div>
				<div><a id="s3"></a><h1>Section 3</h1></div>
			</body>
		</html>
	</xsl:template>

</xsl:stylesheet>

