Hola.
tengo un xml y con un xsl quiero darle un formato al h1 para tener la fuente en color azul etc.... pero no consigo darselo. en firefox se me muestran los campos seguidos unos detras de otro. en internet explorer se me ve el xml en forma de arbol con el nodo raiz y todos sus subnodos con la informacion dentro pero no se me muestra ni en firefox ni en ie con formato html. os dejo del codigo.
editorial.xml
Código XML:
Ver original<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl href=editoriales.xsl"?>
<editoriales>
<editorial>
<nombre> Prentice Hall</nombre>
<homepage>http://www.prentice_hall.com/</homepage>
<direccion>170 West 74th St. NY NY 10023</direccion>
<tfno>212-362-8900</tfno>
<fax>212-874-8605</fax>
</editorial>
<editorial>
<nombre>Universidad de Malaga</nombre>
<homepage>http://www.uma.es/publicaciones</homepage>
<direccion>Biblioteca General. Campus de Teatinos, s/n</direccion>
<tfno>952139999</tfno>
<fax>952131313</fax>
</editorial>
</editoriales>
editoriales.xsl:
Código XML:
Ver original<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<html>
<head><title>peliculas</title></head>
<body>
<h1 style="color:blue; font-size: +2px; font-style: italic; text-decoration: underline;">Información de Editorial</h1>
<p><xsl:value-of select="nombre"/></p>.
<p><xsl:value-of select="email"/></p>.
<p><xsl:value-of select="homepage"/></p>.
<p><xsl:value-of select="direccion"/></p>.
</body>
</html>
</xsl:template>
</xsl:stylesheet>