Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to redirect to another page without writing javascript

Just put this meta tage to your html file
```html
<meta http-equiv = "refresh" content = "2; url = https://www.google.com" />
```

```html
<!DOCTYPE html>
<html>
   <head>
      <title>Redirection</title>
      <meta http-equiv = "refresh" content = "2; url = https://www.tutorialspoint.com" />
   </head>
   <body>
      <p>This page will redirect in 2 seconds.</p>
   </body>
</html>
```
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #redirect #page #writing #javascript
ADD COMMENT
Topic
Name
8+4 =