﻿<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="libraryInfo">
	<html><head>
	<title>Library Members</title></head><body bgcolor="#003366">The Members
	<blockquote bgcolor="#999966" font-family="Lucida Grande">
	
		<xsl:apply-templates/>
	</blockquote>
	</body></html>
</xsl:template>

	<xsl:template match="library">
		<xsl:for-each select="name">
			<p>
				<xsl:value-of select="."/>
			</p>
		</xsl:for-each>
	</xsl:template>
</xsl:stylesheet>
<!-- inline <p style="color: sienna; margin-left: 20px">
This is a paragraph
</p> -->