<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

	<!-- Defining the template for the root rule -->
	<xsl:template match="/">
		<xsl:apply-templates/>
	</xsl:template>
	
	<xsl:template match="greetings">
		<xsl:apply-templates/>
	</xsl:template>
	
	<!-- Defining the template rule for the greeting element -->
	<xsl:template match="greeting">
		<!--Display the contents using the "." for the value of the current element-->
		<xsl:value-of select="."/>
	</xsl:template>


</xsl:stylesheet>

