-2

Google

i want to remove underline of the link text

Gam Aung
  • 1
  • 1

3 Answers3

1
a {
    text-decoration:none;
} /*use this*/
shiva rao
  • 163
  • 8
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