questo:
codice:
<html><title>NOME_DEL_SITO</title>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" background="images/sfondo.jpg">
</body>
</html>
contiene diversi errori.
prova a sostituire con:
codice:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="language" content="it" />
<title>NOME DEL SITO</title>
<style type="text/css">
html, body {
margin: 0;
padding: 0;
background: url(images/sfondo.jpg) top center no-repeat;
}
</style>
</head>
<body>
</body>
</html>
Cyà