This is easy task. Here is a normal html file which contain hidden redirection in bottom of code. Just create an another file with name "hidden.html" and when someone click on the text in
paragraph will be redirect to hidden.html.
HTML Code:
<html>
<head>
<title>Hidden Link</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<style type="text/css">
a#hiddenlink, a#hiddenlink:hover {
color: #000000;
text-decoration:none;
cursor: text;
background:none;
}
</style>
</head>
<body>
<p><a id="hiddenlink" href="hidden.html" onmouseover="return true;">Hidden link</a></p>
click over "Hidden link" above.
</body>
</html>
Here is hidden.html file, as you see this is a normal html page:
HTML Code:
<html>
<head>
<title>Hidden Link</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
</head>
<body>
a hidden page
</body>
</html>