Forum Moderators: mack
i used this doc type
<!Doctype HTML Public "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
i think i encoded ansi? but didnt put it on my pages
says at the botom of textpad ANSI
For the doctype, I would recommend this:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> That points to HTML 4.01 rather than HTML 4.0 - so it's the latest version.
For the character encoding, you don't mention which language your site is written in. If it's English or another west-European language, try adding:
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> in between the
<head> and </head> tags, which will give you ISO-8859-1, a standard character encoding for such documents.