Forum : regarding anchor tag <a href>
Brief description  about Online courses   join in Online courses
View Sri Bhargavi  Peesapati 's Profile

regarding anchor tag <a href>

Hi..whenever we want to go for linking a page to another, we use <a href="url"> but we get one underline there for the concerned Font we click...If we don't want that underline to appear but still need to be linked, then what should we do?
Asked by Sri Bhargavi Peesapati | Jun 29, 2010 |  Reply now
Replies (4)
View sri-bhargavi peesapati 's Profile
Ok, Thank you
Jun 29, 2010
View sri-bhargavi peesapati 's Profile
Ok, Thank you
Jun 29, 2010
View teacher siliconindia 's Profile
write this code in style sheet

a:link {

text-decoration:none;
}
a:visited {

text-decoration: none;
}
a:hover {

text-decoration: none;
}
a:active {
text-decoration: none;
}

Regards
Jun 29, 2010
View khaja naquiuddin 's Profile
write the below code between <head> </head> tags
<style type="text/css">
<!--
a:link {

text-decoration:none;
}
a:visited {

text-decoration: none;
}
a:hover {

text-decoration: none;
}
a:active {
text-decoration: none;
}
-->
</style>
Jun 29, 2010