Do yourself a favor when you code your new site. Make all the HTML lower case and use the XHTML style endings for single-instance tags. You may have used <BR> in the past. Switch to <br /> for all future projects (there's a space between the br and the />). Do the same for <img src="filename.jpg /> tags (another space before the /). HTML is being rapidly replaced by XHTML and other more modern variants and they will all require the lower-case and finished tags. Also, make sure you end all tags. <p> must have an ending </p>. You can get away without them for a short while longer, but you'll kick yourself in a bit when you are forced to modernize your site. It won't be too long. I have switched more than a thousand pages of website over to XTML formatting and it hasn't been a pleasure. Avoid all the pain you can.