XML XSLT
<!DOCTYPE html> <html> <body> <pre> <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <html> <body> <h2>Product Catalog</h2> <xsl:apply-templates select="catalog/product"/> </body> </html> </xsl:template> <xsl:template match="product"> <p> <b><xsl:value-of select="name"/></b> — $<xsl:value-of select="price"/> </p> </xsl:template> </xsl:stylesheet> </pre> </body> </html>