Answers for "how to remove under line"

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
0

remove underline in a a

text-decoration:none;
Posted by: Guest on October-13-2020
1

remove underline in anchor tag

text-decoration:none;
Posted by: Guest on August-06-2020

Code answers related to "how to remove under line"

Browse Popular Code Answers by Language