Creating a redirect from a different domain - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:meta

Description

Creating a redirect from a different domain

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <title>Dummy</title> 
  <meta http-equiv="refresh" content="0; url=http://www.yoururlhere.com/"> 
 </head> <!--from   w  w  w .j av  a  2  s.c o m-->
 <body>  
 </body>
</html>

Related Tutorials