Hi !!!
Laut css sollte
text-decoration: none;
der Befehl sein um den Unterstrich bei den links wegzumachen. Leider funktioniert das nicht so. :(
Weiss jemand was ich falsch gemacht habe?
Laut css sollte
text-decoration: none;
der Befehl sein um den Unterstrich bei den links wegzumachen. Leider funktioniert das nicht so. :(
Weiss jemand was ich falsch gemacht habe?
Code:
<html>
<head>
<title>Titel</title>
<style>
#construction {
height: 150px;
margin: 260px;
font-size: 35px;
letter-spacing: 0.5em ;
font-family: century-gothic, arial;
color: #cc0000;
text-align: center;
text-decoration: none;
}
</style>
</head>
<body bgcolor="#000000">
<a href="index.html"><div id="construction">coming soon</div></a>
</body>
</html>