Tester
From Norfolk RCC
This page shows a number of different ways to reformat text
Contents |
Colour
You can change the colour like this
<span style="color:red;">You can change the colour like this</span>
Or you can use web colour numbers like this
<span style="color:#33FF33;">Or you can use web colour numbers like this</span>
There is a list of web colours here http://www.w3schools.com/html/html_colors.asp
Font
You can change the font like this
<span style="font-family:courier;">You can change the font like this</span>
Size
You can change the size like this
<span style="font-size:2.5em;">You can change the size like this</span>
Combined
Or you can do a combination of things like this
<span style="color:teal;font-size:2.5em;font-family:courier;">Or you can do a combination of things like this</span>
