remove underscore links with inline style
add a style attribute in the link tag, such as <a style=””></a>,
then add a css code that serves to tell the link not to be underlined, namely
text-decoration:none and it will look like the code below
<a style="text-decoration:none" href="https://rrcomindo.com"> website </a>
website
the links that are underlined by default are now gone like this image
remove underscore links with internal style if in the first tutorial using an inline style that mixes html and css.
how to separate internal style between html and css
<!DOCTYPE html>
<html>
<head>
<title> remove all underscores ( underline ) </title>
<style>
.link-website {
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>
.link-website {
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