Remove link with CSS
Consider the following code for removing link from any anchor tag.
Example
<html> <head> <style type="text/css"> .notActive { pointer-events: none; cursor: default; } </style> </head> <body> <a href="www.ayunor.com" class="notActive">Ayunor</a></body> </html>