Dovresti risistemare un attimo l'html:
Non esiste (almeno, dove dovrebbe essere), il tag <html>:
Codice HTML:
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1">
<HEAD>
<title>Hackedgames</title>
<meta name="keywords" content="hackedgames, giochi hackati,giochi,games, hacker, altervista,flash games">
<meta name="description" content="Hackedgames è la prima community di giochi online hackerati (esempio: nei giochi normali si inizia con 1 coints, in quelli hackati con 99999, è piu' semplice vincere). iscriviti subito è gratis!">
<meta http-equiv="content-language" content="IT">
<meta http-equiv="content-type" content="text/html;charset=icso-8859-1">
Poi, hai messo 2 volte il tag del charset. Prova, invece, a lasciarne uno (dove dovrebbe stare) impostato correttamente:
Codice HTML:
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
Se la pagina l'hai scritta in quel charset, oppure in:
Codice HTML:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Se l'hai scritta con l'UTF-8.
Comunque, in generale, per evitare questi problemi, (ad esempio) la è puoi scriverla come è oppure la a come à etc etc....
Ciao!
EDIT:
ah, in giro per la pagina, ho trovato anche l' UTF!
Codice HTML:
giochi hack , games hack, hacked games" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
Elimina tutti quei charset, e lascia quello corretto, NELLA POSIZIONE CORRETTA.
p.s: la struttura di una pagina HTML dovrebbe essere:
Codice HTML:
<!doctype [...]>
<html>
<head>
//title, vari meta-tag...
</head>
<body>
corpo della pagina
</body>
</html>
Cerca di risistemare il tutto in questo modo, e non con 2 <body>, 5 </body>, 2 <html>, 3 </html>...