how to set link as normal text in html code example
Example: how to set link as normal text in html
You can make a link look like normal text by setting color and removing text underline and even change the cursor.
a {
color: black;
text-decoration: none;
cursor: auto;
}