Adding Style using CSS
Styling as attributes or using <LINK> are not allowed (these are HTML statements)
You need a Processing Instruction (PI):
<?xml-stylesheet type="text/css" href="
URL
" />
You can add several style sheets and they concatenate just like
@import
in CSS
2 of 34