For One Link:
The code may look something like this:
<a href=”http://www.newflashmedia.com”>newflashmedia</a>
Typing in the blue code ” style=”text-decoration:none” “, will remove the hyperlink underline:
<a href=”http://www.newsourcemedia.com” style=”text-decoration:none”>newsourcemedia</a>
In order to affect other links repeat the process shown above.
For All Links
To affect all links in an html document, you can add CSS to the header as follows:
Syntax:-
<style type=”text/css”>
a {
text-decoration: none;
}
</style>
Example:-
<style type=”text/css”>
a:link {
color: blue;
text-decoration:none;
}
a:visited {
color: purple;
text-decoration:none;
}
a:active {
background-color: yellow;
text-decoration:none;
}
a:hover {
color:red;
text-decoration:none;
}
</style>
Cegonsoft