Posts Tagged ‘lt’

How to re-direct a page

No Comments »

Bookmark this category
Here’s the code:

Your Page Title
<meta http-equiv="REFRESH"
content=”0;url=http://www.the-domain-you-want-to-redirect-to.com”>

Optional page text here.

<meta http-equiv="REFRESH"
content=”0;url=http://www.the-domain-you-want-to-redirect-to.com”> is
the part that actually does the redirecting.

The number preceding the url (in this case zero) tells the browser the
number of seconds to wait before redirecting to the new url… Continue reading

Web Design Tutorial: Redirect using html

No Comments »

Bookmark this category
Here’s the code:

<meta http-equiv=”REFRESH”
content=”0;url=http://www.the-domain-you-want-to-redirect-to.com”>

Optional page text here.

<meta http-equiv=”REFRESH”
content=”0;url=http://www.the-domain-you-want-to-redirect-to.com”> is
the part that actually does the redirecting.

The number preceding the url (in this case zero) tells the browser the
number of seconds to wait before redirecting to the… Continue reading