<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xsl:template match="/"> <html> <head /> <body> <xsl:for-each select="Import"> <table border="1"> <thead> <tr> <td>id</td> <td style="background-color:red; "> <span style="border-width:thin; color:white; font-family:Verdana; font-size:medium; font-weight:bold; text-decoration:none; ">navn</span> </td> <td style="background-color:red; "> <span style="border-width:thin; color:white; font-family:Verdana; font-size:medium; font-weight:bold; text-decoration:none; ">gade</span> </td> <td style="background-color:red; "> <span style="border-width:thin; color:white; font-family:Verdana; font-size:medium; font-weight:bold; text-decoration:none; ">postnummer</span> </td> <td style="background-color:red; "> <span style="border-width:thin; color:white; font-family:Verdana; font-size:medium; font-weight:bold; text-decoration:none; ">by</span> </td> <td style="background-color:red; "> <span style="border-width:thin; color:white; font-family:Verdana; font-size:medium; font-weight:bold; text-decoration:none; ">tlf</span> </td> <td style="background-color:red; "> <span style="border-width:thin; color:white; font-family:Verdana; font-size:medium; font-weight:bold; text-decoration:none; ">email</span> </td> <td style="background-color:red; "> <span style="border-width:thin; color:white; font-family:Verdana; font-size:medium; font-weight:bold; text-decoration:none; ">FirmaID</span> <span style="border-width:thin; color:white; font-family:Verdana; font-size:medium; font-weight:bold; text-decoration:none; "></span> </td> <td style="background-color:red; "> <span style="border-width:thin; color:white; font-family:Verdana; font-size:medium; font-weight:bold; text-decoration:none; ">StillingsI</span> <span style="color:white; font-family:Verdana; font-size:medium; font-weight:bold; ">D</span> </td> </tr> </thead> <tbody> <xsl:for-each select="Row"> <tr> <td> <xsl:for-each select="id"> <span style="font-family:Abbey Medium Extended; font-size:small; font-style:oblique; "> <xsl:apply-templates /> </span> </xsl:for-each> </td> <td style="background-color:blue; "> <xsl:for-each select="navn"> <span style="background-color:transparent; color:white; font-family:Abbey Medium Extended; font-size:small; font-style:oblique; "> <xsl:apply-templates /> </span> </xsl:for-each> </td> <td style="background-color:blue; "> <xsl:for-each select="gade"> <span style="background-color:blue; color:white; font-family:Abbey Medium Extended; font-size:small; font-style:oblique; "> <xsl:apply-templates /> </span> </xsl:for-each> </td> <td style="background-color:blue; "> <xsl:for-each select="postnummer"> <span style="background-color:transparent; color:white; font-family:Abbey Medium Extended; font-size:small; font-style:oblique; "> <xsl:apply-templates /> </span> </xsl:for-each> </td> <td style="background-color:blue; "> <xsl:for-each select="by"> <span style="background-color:transparent; color:white; font-family:Abbey Medium Extended; font-size:small; font-style:oblique; "> <xsl:apply-templates /> </span> </xsl:for-each> </td> <td style="background-color:blue; "> <xsl:for-each select="tlf"> <span style="background-color:transparent; color:white; font-family:Abbey Medium Extended; font-size:small; font-style:oblique; "> <xsl:apply-templates /> </span> </xsl:for-each> </td> <td style="background-color:blue; "> <xsl:for-each select="email"> <span style="background-color:transparent; color:white; font-family:Abbey Medium Extended; font-size:small; font-style:oblique; "> <xsl:apply-templates /> </span> </xsl:for-each> </td> <td style="background-color:blue; "> <xsl:for-each select="FirmaID"> <span style="background-color:transparent; color:white; font-family:Abbey Medium Extended; font-size:small; font-style:oblique; "> <xsl:apply-templates /> </span> </xsl:for-each> </td> <td style="background-color:blue; "> <xsl:for-each select="StillingsID"> <span style="background-color:transparent; color:white; font-family:Abbey Medium Extended; font-size:small; font-style:oblique; "> <xsl:apply-templates /> </span> </xsl:for-each> </td> </tr> </xsl:for-each> </tbody> </table> </xsl:for-each> </body> </html> </xsl:template> </xsl:stylesheet>