I\'d like to display snippets of programming language code, and also HTML code, inside an HTML document using CSS. I want it to be indented and in fixed-width font... I\'m think
Well, you could try using a
tag in your blockquote to preserve the formatting first, and then use a monospaced font, like courier for the css style. Something like this would work in the css: pre { font-family: "Courier New" Courier monospace; }
Something like this would work in the css:
pre { font-family: "Courier New" Courier monospace; }