Answers for "html inline style remove 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
2

How do you display hyperlinks without an underline?

a {
text-decoration: none;
}
Posted by: Guest on September-14-2020

Code answers related to "html inline style remove underline from link"

Browse Popular Code Answers by Language