If you are using a foreign alphabet, you already know all of this. You probably have a special HTML editor or at least a non-English version of a browser, and maybe even a customized Win95. Many languages use the Latin alphabet, so just because you don't write in English doesn't mean you need a different character set.
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">First you tell the browser what HTTP command you are supplying, in this case "Content-Type". Next, the CONTENT keyword says this is an HTML text file, and the character set is "iso-8859-1" (also known as Latin-1).
If you would like see an example of a different character set, go to this help page written in Turkish. You can view the source to see how the author declared the character set.
<META HTTP-EQUIV="Content-Language" CONTENT="en-GB">which says the page is written in British English.
<META HTTP-EQUIV="Refresh" CONTENT="delay;URL=URL">where delay is the number of seconds to wait, and URL is the page to load. Again, I prefer to do this with JavaScript which lets me load the second page only if certain conditions are met. Make sure you put an HREF on the first page in case the Refresh (or JavaScript) doesn't work, to allow the viewer to manually proceed to the new page.
NOTE: GeoCities rules prohibit the use of this command to transfer to a page outside of GeoCities.
<META HTTP-EQUIV="Window-target" CONTENT="_top">Since this command is not recognized by all browsers, once again I prefer to use the equivalent JavaScript command.
< Back to Meta Intro | On to Special NAME Tags > |