My website uses a rather obscure font that about half the computers can properly read. The font is \"Lucida Console\". On the computers that can\'t read this font, they get
Further tips:
You can also serve that obscure font with your website (if you are legally able to) using @font-face. It's easy and works even in IE6 :).
Read about it here: http://www.miltonbayer.com/font-face/
you can specify multiple fonts:
p{font-family:"Times New Roman", Times, serif;}
The browser will try the first one, if that one isn't available the second, and so forth. In the end it uses the family serif, so the browser choses any serif font. You should use the monospace family.
So in your case, somthing like this is what you want:
p{font-family:"Lucida Console", "Courier New", monospace;}