3

How can I make a Web page that takes me automatically without clicking to another site? (I use in HTML)

I tried to find a answer but I didn't find any answer that it in HTML.

I tried to write like this:

<a href="http://www.boutell.com/newfaq/">

</a>
but this not take me automatically.

can someone help me? thanks!

Fox
  • 141
  • 1
  • 1
  • 8

1 Answers1

1

Write this in the head section of the HTML document.

<meta http-equiv="refresh" content="0; url=randomname.com" />

As soon as the page loads, on 0 seconds, you can go to your page.

Yash Jain
  • 1
  • 5
  • 20