HTML beginner |
|
Als ik mijn website laat valideren met validator.w3.org staat dat het xhtml strict is, maar staat er boven deze opmerking:
Citaat: Character Encoding mismatch!
The character encoding specified in the HTTP header (iso-8859-1) is different from the value in the <meta> element (utf-8). I will use the value from the HTTP header (iso-8859-1) for this validation.
Dit is mijn header-html-code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/strict.dtd">
<html>
<head>
<title>website</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
</head>
...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/strict.dtd"> <html> <head> <title>website</title> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> </head> ...
Wat moet ik doen om deze "mismatch" weg te krijgen?
|