HTML Coding Tools - Common HTML Web Page Questions
Q: How do I make a page redirect to another page?
A: You can create a page with just the code below, replacing the URL with the URL of the page you would like customers to be sent to.
<html> <head> <title>IU Webmaster redirect</title>
<meta http-equiv="refresh" content="1;URL=http://www.yourdomain.com/page-to-go-to.html">
</head> <body bgcolor="#ffffff">
<center>The contents you are looking for have moved.
You will be redirected to the new location automatically in 5 seconds. </center>
</body>
</html>
Q: What is the most common screen resolution?
A: According to w3schools.com in 2009, over 93% of screens were 1024x768 or higher.
HTML Coding Tools - Common HTML Web Page Questions Labels: HTML Coding Tools - Common HTML Web Page Questions
