<stylesheet> tag.
<stylesheet> tag permit to add style sheet to the document. The tag styles can be used in text tag.
example of style sheet:
.b{
font-style: B; //style de la police
}
.u{
font-style: U;
}
.i{
font-style: I;
}
.br{
indent: 2;
}
.red{
color:#ff0000;
}
<stylesheet file="/home/guil/dev/src/php/xml2pdf/styleSheets/style.txt" />
<text fontcolor='#808080' textalign='j'>normal text <b>bold text!</b> <u>underline text!</u> <i>italic text</i> <b><u><i>all in same time!</i></u></b> <br/><red>red text on new line</red></text>
Located in /plugins/tags/xml2pdf.tag.stylesheet.php (line 51)