Answers for "using link in html under text"

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

Browse Popular Code Answers by Language