So setzen Sie den Link als normalen Text in HTML fest

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;
}
Ankur