formatowanie

This commit is contained in:
Piotr Baranowski 2020-05-18 10:48:51 +02:00
parent b064e4847c
commit 4007f44a9f
1 changed files with 11 additions and 9 deletions

View File

@ -7,21 +7,21 @@
<head>
<style>
div h2 {
display: inline-block;
display: inline-block;
}
.title {
font-style: italic;
font-style: italic;
}
.verse {
margin: 0;
margin: 0;
}
</style>
</head>
<body>
<h1>Zbiór Wierszy</h1>
<xsl:apply-templates select="Poem"/>
<xsl:apply-templates select="Poem"/>
</body>
</html>
</xsl:template>
@ -40,7 +40,9 @@
</xsl:template>
<xsl:template match="Strophe">
<p><xsl:apply-templates select="Verse"/></p>
<p>
<xsl:apply-templates select="Verse"/>
</p>
</xsl:template>
@ -51,9 +53,9 @@
</xsl:template>
<xsl:template match="Bold">
<b>
<xsl:apply-templates/>
</b>
</xsl:template>
<b>
<xsl:apply-templates/>
</b>
</xsl:template>
</xsl:stylesheet>