<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

	  <xsl:template match="/">
		    <html>
				      <head>
							        <title>
											          <xsl:value-of select="/article/heading"/>
																        </title>
																				      </head>
																							      <body>
																										        <h1>
																														          <xsl:value-of select="/article/heading"/>
																																			        </h1>
																																							        <xsl:apply-templates select="/article/para"/>
																																											      </body>
																																														    </html>
																																																  </xsl:template>

																																																	  <xsl:template match="para">
																																																		    <p>
																																																				      <xsl:apply-templates/>
																																																							    </p>
																																																									  </xsl:template>

																																																										  <xsl:template match="emphasis">
																																																											    <i>
																																																													      <xsl:apply-templates/>
																																																																    </i>
																																																																		  </xsl:template>

																																																																			  <xsl:template match="strong">
																																																																				    <b>
																																																																						      <xsl:apply-templates/>
																																																																									    </b>
																																																																											  </xsl:template>

																																																																												</xsl:stylesheet>

