html - html5 coding redirect not working -


i trying redirect page here , not go when test both files in same folder on computer

<!doctype html>    <html lang="en">    <head>    <meta charset="utf-8/>    <meta http-equiv="refresh" content="4; url=home.html" />    </head>    <body>  <h1>welcome blazefirer's website</h1>  </body>    </html>

other page

<!doctype html>  <html lang="en">  <head>  <meta charset="utf-8">  <title>blazefirer</title>  </head>    <body>  hello  </body>    </html>

close charset meta tag properly, it's missing quotes afterwards.

<meta charset="utf-8/> 

should be

<meta charset="utf-8"/>