How to change the default Internet Explorer fonts

fontsinternet explorer

When Internet Explorer goes to use a fixed-width font, I want to override the default (Consolas or Courrier New, depending on Windows version) with my own font. Basically, whenever someone uses <tt> tags or asks for the fixed font. (I'd like to replace these with Anonymous Pro)

How can I do that?

Best Answer

I believe the "Plain text font" under Tools > Internet Options > General > Fonts is the one you need to change.

Update:

To override a font defined by the web page you are viewing, create a CSS file and in it put:

tt, pre, code { font-family: "Anonymous Pro" !important; }

Then under Tools > Internet Options > General > Accessibility, select "Format documents using my style sheet", and provide the location of the CSS file you created above.

Related Question