i want to remove underline of the link text
Asked
Active
Viewed 56 times
3 Answers
0
Use CSS:
a {
text-decoration: none;
}
You can also add:
a:hover {
text-decoration: underline;
}

MaKR
- 1,882
- 2
- 17
- 29
0
You can do this using the text-decoration: none;
as follows:
a {
text-decoration: none;
}
<a href="www.google.com">Link</a>

Majed Badawi
- 27,616
- 4
- 25
- 48