-2

i am working on a project in which i have to make a webpage .i have some links for going web sites and i want to remove underline in link ( a ). please help me.

      <a href="google.com" >google</a><br>
      <a href="youtup.com" >youtup</a><br>
      <a href="owerstackflow.com" >stackoverflow</a>
karim
  • 25
  • 8

1 Answers1

-1

Use this:

<a style="text-decoration:none" href="http://Example.Microsoft.Com">nonunderlinedhyperlink</a>
Paolo Mossini
  • 1,064
  • 2
  • 15
  • 23
  • tag a is block level or inline level and i want to underline show when i put mouse in hover of link – karim Oct 12 '20 at 20:14