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>
```