PHP interesse |
|
Ik probeer de onderstaande link, zwart te maken.
Dit wil mij maar niet lukken. Alvorens Bedankt!
Met <font> </font> lukt het mij wel.
<a href="contact.php">Contact us</a>
// CSS
<style type="text/css">
<!--
input {
background-color: #000000;
border: 1px solid;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
color: #B5B5B5;
}
-->
</style>
<style type="text/css">
<!--
a:link {
color: #000000;
text-decoration: none;
}
a:hover {
color: #B5B5B5;
text-decoration: underline;
}
a:visited {
color: #FFFFFF;
text-decoration: none;
}
-->
</style>
<a href="contact.php">Contact us </a> // CSS <!-- input { background-color: #000000; border: 1px solid; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9px; color: #B5B5B5; } --> <!-- a:link { color: #000000; text-decoration: none; } a:hover { color: #B5B5B5; text-decoration: underline; } a:visited { color: #FFFFFF; text-decoration: none; } -->
|