<meta http-equiv="Content-Type" content="<?php bloginfo ('charset'); ?>" />
Right - all you'd have to replace is the <?php bloginfo..." stuff. The fact that you edited it and it made your page disappear makes absolutely no sense. Meta tags have nothing to do with your site's layout. The only thing I could guess was that you missed a closing tag.
and for the record this:
<meta http-equiv="Content-Type" content="UTF-8" /> is malformed. The *content* is text/html, the *charset* is UTF-8". SO it *should* be written:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
Oh, and I'd change it back to UTF-8; that's the recommended setting.
Yes, it is the recommended setting. But only because UTF-8 handles pretty much all character types out there - from Swedish to Russian to Chinese. But this guy is posting in stright-up English. If he plans to write in a nother language, I'd say to go ahead and keep the UTF-8. But if not, then it won't hurt to change to ISO-8859-1 - that's for English. Sometimes UTF-8 can screw with things.
I do agree though - it's odd that you have those tags in there, surrounding nothing. Were you, at one point, going to emphasize that section of text, and then decided against it? Maybe going into the code part (instead of using the RTE) and removing the extraneous code would help.