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>
<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