You can use CSS to do this.
In the <head>
tag of your .htm
(or .html
) file, add the following code:
<style>
a {
text-decoration: none;
}
<style>
For adding further styles, you can use styling on the tag:
<style>
a:link {
/*a normal <a> tag*/
text-decoration: none;
color: value;
}
a:hover {
text-decoration: underline;
color: /*Your desired color when cursor is on the link*/;
}
a:visited {
text-decoration: none;
color: /*Your desired color when link is clicked and visited*/;
}
a:active {
text-decoration: underline;
color: /*Your desired color when link is clicked*/;
}
<style>