Advertisement
Paarzivall

Untitled

Jan 23rd, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.01 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3.     <xsl:template match="/">
  4.     <html>
  5.         <head>
  6.             <title>Sklep Muzyczny</title>
  7.         </head>
  8.         <body>
  9.             <xsl:for-each select="/albumy/album">
  10.                 <div style="width:44%; float:left; margin-left:5%; margin-bottom:2%; border:1px solid blue; border-radius:20px;">
  11.                     <div style="float:left; margin-left:5%; color:blue;">
  12.                         <h2><xsl:value-of select="autor"/></h2>
  13.                     </div>
  14.                     <img style="height:40%;  float:right; border-top-right-radius:20px; border-bottom-right-radius:20px;">
  15.                         <xsl:attribute name="src">
  16.                             <xsl:value-of select="okladka" />
  17.                         </xsl:attribute>
  18.                     </img>
  19.                 </div>
  20.             </xsl:for-each>
  21.         </body>
  22.     </html>
  23.     </xsl:template>
  24. </xsl:stylesheet>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement