Alda,
If you want to use a stylesheet, you can do:
<p class="noindent">text here</p> in your (x)html file. (Don't forget to link
your CSS).
In the CSS:
Code:
.noindent {
text-indent: 0;
}
And for direct style in the (x)html something like:
<p style="text-indent: 0";>
But the use of a CSS file is better IMO.