I need to display the following as HTML text (verbatim):
T H I S I S A T E X T
As you can see:
- all characters have a space in between
- the space characters have been doubled
- I want to have that inside an
<a>
tag
What I have tried is:
<a href="#">T H I S I S A T E X T</a>
But html compresses several space characters into one.
How can I force the double spaces?