[CSS] Links unterschrichen(fertig)

Allison
Ich hab den Code eingegeben [CSS] damit die Links nicht unterstrichen werden.
das ist die ganze HTML Seite.
Leider sind die unterstrichenen Links, immer noch unterstrichen. Wieso?

Hab ich einen Fehler? Oder muss ich das ganze weiter unten einfügen?

PS: Der Code istfängt bei 7: an und hört bei 11: auf fröhlich

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="content-type">
  <title>menu</title>
  <style type="text/css">
<!--
A:link { text-decoration: none; }
-->
  </style>
</head>
<body>
<div
 style="text-align: center; font-weight: bold; font-family: Helvetica,Arial,sans-serif; color: rgb(103, 136, 98);"><big><big><a
 href="http://linafilipits.square7.ch/willkommen.html"
 target="willkommen" style="color: rgb(85, 107, 47);">Clear</a>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
<a href="http://linafilipits.square7.ch/Impressum.html"
 target="willkommen" style="color: rgb(85, 107, 47);">Impressum</a>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
<a href="http://www.guestbook-free.com/books3/linaf"
 target="willkommen" style="color: rgb(85, 107, 47);">G&auml;stebuch</a></big></big></div>
</body>
</html
Skadi

Das liegt daran, dass du nur a:link definiert hast.
Theoretisch gesehen müsstest du nach a:active,a:visited & a:hover bestimmen. :>

Mfg; Skadi
Allison
Super danke.
Jetzt ist das unterstrichene weg!

- Allison