Così come dovresti fare:
codice:
<html>
<head>
<meta http-equiv="Content-Language" content="it">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>link</title>
<style type="text/css" media="screen">
a { text-decoration:none;}
a:hover { text-decoration:none}
</style>
</head>
<body>
link
</body>
</html>
Invece così con lo stile in linea (non consigliabile):
codice:
<html>
<head>
<meta http-equiv="Content-Language" content="it">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>link</title>
</head>
<body>
link
</body>
</html>