9

enter image description here

how can I remove underline text in my code ?

Dan Bonachea
  • 2,408
  • 5
  • 16
  • 31
ali_he96
  • 147
  • 1
  • 12
  • You can find the answer here https://stackoverflow.com/questions/2041388/how-to-remove-the-underline-for-anchorslinks – Nick Vu Aug 06 '22 at 06:51

4 Answers4

4

Use text-decoration : none ; tag in your CSS file or style code .

Seyfi
  • 1,832
  • 1
  • 20
  • 35
Hanieh Sadeghi
  • 56
  • 1
  • 10
1

Give your tag, css property:

text-decoration: none;
1

Just use in your css

a {
   text-decoration: none;
}
1

try implementing this in your css file or <style> tag

a {
  text-decoration: none;
}
K.Nes
  • 31
  • 4