How to Hide a Link in Text

2 Ways How to Hide a Link in Text: [1] Make the Link Invisible Even Though Still There. [2]Make the Link Not Look Like Link, Meaning the Link is Not Blue and Does NOT Have Underline Text

Home Short:

Hide a link in text is extremely easy to do.

2 Ways to Hide a Link in Text ...

  1. Make the Link Invisible But it Will Still be there.
  2. Make the Link not Look Like a Link.

Make the Link Invisible But it Will Still be there

To make the link invisible you simple apply a short snippet of css style code to the html code of the link:

<a href="http://adviceand.solutions" style="visibility:hidden;">adviceand.solutions website</a>

There is a link hidden in the text right here -> adviceand.solutions website <- but the link is hidden in the text as described above.

Make the Link not Look Like a Link

This css style method of hiding a link in text makes the text the same color and style as regular text and removes the underline so even though it will still be a link, no one will know it is a link as the link will be hiding in plain site:

<a href="http://adviceand.solutions" style="color:inherit;text-decoration:none;">adviceand.solutions website</a>

There is a link hidden in the text right here -> adviceand.solutions website <- but the link is hidden in the text as described above. Go ahead and click it and you will see it is indeed a link, even though completely hidden within and blending within the text.

S
H
A
R
E