L'errore sta nel posto dove hai messo lo stile, no va all'interno del tag body (che fra l'altro non hai chiuso, ma fra <head> e </head> cioè:
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" />
<title>Documento senza titolo</title>
<style type="text/css">
A:link, A:visited { text-decoration: none }
.Stile12 {color: #000000}
</style>
</head>
<body>
...
</body>
</html>