Answers for "how to make a link look like normal text in html"

1

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;
}
Posted by: Guest on March-22-2021

Code answers related to "how to make a link look like normal text in html"

Browse Popular Code Answers by Language