Answers for "how ot rmeove underline from link"

CSS
10

how to remove underline from link in html

<body>
   <h2>About</h2>
   <p>
     <!-- Just add text decoration style:None -->
      Our <a href="" style="text-decoration: none;">Team</a>
   </p>
</body>
Posted by: Guest on August-26-2020
6

how to remove underline from link in html

<a href="http://yoursite.com/" style="text-decoration:none">yoursite</a>
Posted by: Guest on April-25-2020

Code answers related to "how ot rmeove underline from link"

Browse Popular Code Answers by Language