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.
<MyXML xmlns="http://www.MyXML.com/ns"
xmlns:on="http://www.someothernamespace">
<MyFirstTag>
<Line>Hello world</Line>
<on:SecondLine>Bye bye</on:SecondLine>
</MyFirstTag>
</MyXML>
<xsl:stylesheet version="1.0"
xmlns="http://www.MyXML.com/ns"
xmlns:on="http://www.someothernamespace">
<xsl:template match="/">
<html><head/><body>
<xsl:apply-templates select="MyFirstTag"/>
</body></html>
</xsl:template>
<xsl:template match="MyFirstTag">
<xsl:value-of select="Line"/>
</xsl:template>
</xsl:stylesheet>
<xsl:stylesheet version="1.0"
xmlns:someprefix="http://www.MyXML.com/ns"
xmlns:on="http://www.someothernamespace">
<xsl:template match="/">
<html><head/><body>
<xsl:apply-templates select="someprefix:MyFirstTag"/>
</body></html>
</xsl:template>
<xsl:template match="someprefix:MyFirstTag">
<xsl:value-of select="someprefix:Line"/>
</xsl:template>
</xsl:stylesheet>