Comment définir le lien comme texte normal dans 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;
}
Ankur