Posts: 3,987
Name: Abel Mohler
Location: Asheville, North Carolina USA
|
This line:
HTML Code:
<meta http-equiv="Content-Type" content="text/html: charset=windows 1252">
Is your character encoding problem. Firefox and Chrome probably just ignore it and default to UTF-8:
HTML Code:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Also, it is a good idea to place a proper DOCTYPE at the very top of the page, right before the opening html tag:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
__________________
I build web things. I work for the startup Please login or register to view this content. Registration is FREE
.
|