Creates a named element in the output.
<xsl:element name=element-name>
The example below shows the creation of an element, an HTML FORM INPUT tag.
<xsl:element name="INPUT"> <xsl:attribute name="VALUE"><xsl:value-of select="name"/></xsl:attribute> <xsl:attribute name="SIZE">35</xsl:attribute> </xsl:element>
<INPUT VALUE="name" SIZE="35">
Click here to view an example.