Answers for "href no underline"

14

remove underline html

<a style="text-decoration: none;"></a>
Posted by: Guest on February-20-2020
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

underlined style for a link

a {
  text-decoration: none;
}
Posted by: Guest on November-27-2020

Browse Popular Code Answers by Language