<?xml version="1.0" encoding="ISO-8859-9"?> 

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:template match="/exam">
	<h3><xsl:value-of select="@id"/> : <xsl:value-of select="title"/></h3>
	<xsl:apply-templates select="question"/>
</xsl:template>

<xsl:template match="question">
	<h4> Soru <xsl:value-of select="@number"/> </h4>
	<i> <xsl:value-of select="text"/> </i>
	<xsl:for-each select="option">		
		<br/><b> <xsl:value-of select="@id"/> </b> ) <xsl:value-of select="."/>	
	</xsl:for-each>
</xsl:template>


</xsl:stylesheet>
