Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<xsl:stylesheet xmlns:xsl="[URL unfurl="true"]http://www.w3.org/1999/XSL/Transform"[/URL] version="1.0">
<xsl:output method="html"/>
<xsl:template match="/">
<html>
<body>
<h3>local-name() Function</h3>
<xsl:apply-templates />
</body>
</html>
</xsl:template>
<xsl:template match="*">
<xsl:value-of select="local-name()"/> = <xsl:value-of select="text()"/><br/>
<xsl:apply-templates select="*"/>
</xsl:template>
</xsl:stylesheet>