Your HostICan Community  


Go Back   Your HostICan Community > Programming & Design > HTML / Design

HTML / Design Are you a designer? Or just trying to become one? Great! You'll be able to talk about layouts, and HTML code to help your fellow designers, so everyone can work together to master the tricks of the trade. (Maybe even some JavaScript too!)

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 06-02-2009, 11:24 AM
Bizarre Bizarre is offline
Junior Member
 
Join Date: Feb 2009
Posts: 2
Default hosting pages hidden redirect

Can anyone help me to solve a specific problem? I would like on my page to have a hidden link. This mean, by clicking on a normal part of text will load new page.
Reply With Quote
  #2  
Old 06-02-2009, 11:39 AM
iceman1's Avatar
iceman1 iceman1 is offline
Senior Member
 
Join Date: Jan 2009
Posts: 100
Default Re: hosting pages hidden redirect

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> 
Reply With Quote
Reply

Tags
hidden, hosting, pages, redirect

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 04:15 PM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.

Copyright © 2003 - 2008 HostICan. All Rights Reserved.