how to redirect login page to another page in html code example

Example 1: 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>

Example 2: html meta redirect to another page

<!-- [time] is the time to redirect. For immediate loading, you can set it to 0 -->
<meta http-equiv = "refresh" content = " time ; url = link"/>