Thu. Nov 27th, 2025

default link
website
website

the code above will remove the link if you add the link-website class to the html, 
if you want to remove all links without adding the class as follows.
<!DOCTYPE html>
<html>
<head>
<title> remove all underscores ( underline ) </title>
      <style>
             a {
                  text-decoration: none;
                }
     </style>
</head>
<body>
<p>
             <a href=”https://rrcomindo.com“> default link </a>
    </p>
     <p>
            <a style=”text-decoration:none” href=”https://rrcomindo.com“> website </a>
   </p>
    <p>
           <a class=”link-website” href=”https://rrcomindo.com“> website </a>
   </p>
</body>
</html>
Result

See also  Download Nitro PDF PRO

Leave a Reply

Your email address will not be published. Required fields are marked *