User:SallyScot/Notes
Appearance
Notes
[edit]pre tag
[edit]The preformatted text tag preserves line breaks and tabs, e.g.
<pre><b>Hello</b>
new line after a break including some whitespace</pre>
displays as...
<b>Hello</b> new line after a break including some whitespace
Font colours
[edit]Here's a way to achieve different font colours:
<span style="color:blue">Blue text via naming the colour.</span>
<span style="color:#800000">Deep red via number specification of the colour.</span>
Displays as:
Blue text via naming the colour.
Deep red via number specification of the colour.