Answers for "By default Hyperlinks are displayed with an underline. How do you remove the underline from all hyperlinks by using CSS code"

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

Code answers related to "By default Hyperlinks are displayed with an underline. How do you remove the underline from all hyperlinks by using CSS code"

Browse Popular Code Answers by Language