Search
 
SCRIPT & CODE EXAMPLE
 

HTML

HTML redirect

<!DOCTYPE html>
<html>
  <head>
    <title>Loading...</title>
    <meta http-equiv="refresh" content="0; url=http://example.com">
    <script>window.location.href = "http://example.com"</script>
  </head>
  <body>
    <p>Not redirected? Go to <a href="https://example.com">example.com</a></p>
  </body>
</html>
Comment

html redirect

<!DOCTYPE html>
<html>
   <head>
      <title>HTML Meta Tag</title>
      <meta http-equiv = "refresh" content = "2; url = https://www.tutorialspoint.com" />
   </head>
   <body>
      <p>Hello HTML5!</p>
   </body>
</html>
Comment

redirect html

<meta http-equiv="refresh" content="time; URL=new_url" />
Comment

html redirect

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=https://website.com">    
<title>Redirect</title>
</head>
<body>
</body>
</html>
Comment

Html redirect

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0;url=http://newdomain.com/"> 
</head>
<body>
</body>
</html>
Comment

html redirect

<meta http-equiv="refresh" content="0; url=http://example.com">
<script>window.location.href = "http://example.com"</script>
Comment

redirect page via html

<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv = "refresh" content = "0; url = https://www.example.com"/>
  </head>
  <body></body>
</html>
Comment

html redirect to another page

<script>
  function foo() {
  	window.location.href = url
  }
</script>
Comment

html redirect

<meta http-equiv="refresh" content="5;url=http://example.com/" />
Comment

PREVIOUS NEXT
Code Example
Html :: bootstrap 5 cdn js link 
Html :: how can i make that user cant input sonething textbx 
Html :: coc allow comments in json 
Html :: jumbotron bootstrap 
Html :: html submit button 
Html :: how to create table row in javascript 
Html :: html use js variable as text 
Html :: what is dir attribute in html 
Html :: how to make a link in html 
Html :: remove underline from a tag 
Html :: full screen iframe 
Html :: info icon in html 
Html :: nuxt select option v-for 
Html :: input text size 
Html :: html auto refresh 
Html :: html center tag 
Html :: bootstrap row overflow 
Html :: html text cut 
Html :: call year in html 
Html :: html5 video player autoplay 
Html :: html separator line 
Html :: Responsive container centered 
Html :: html align text left 
Html :: html form post 
Html :: img text align 
Html :: html autocomplete dropdown list 
Html :: html quote block 
Html :: XACML 
Html :: space html 
Html :: free html signature template 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =