I'm using a <a href="http://twitter.com/">Twitter</a> code to add a link to my tumblr page, but the link is in white and sticks out,
is there anything I can add to it so i can change the link color?
<head>
<style type="text/css">
.style1
{
color: white
background-color: black
}
</style>
</head>
<body>
<a style="style1" href="www.google.com">google</a>
</body
That will take the style from CSS, and you can then use it multiple times. CSS can do more, such as animations etc. Look up CSS3 Transition effects for more information
<head>
<style type="text/css">
.style1
{
color: white
background-color: black
}
</style>
</head>
<body>
<a style="style1" href="www.google.com">google</a>
</body
That will take the style from CSS, and you can then use it multiple times. CSS can do more, such as animations etc. Look up CSS3 Transition effects for more information