If you use a header redirect, the user will go straight to the redirection location. You cannot output anything to the browser before a header redirect, so there will be no title or anything.
header ("Location: http://www.whatever.com");
To do what you want to do, you need to load the page first, then redirect. This can be done with a meta refresh tag.
<META HTTP-EQUIV="Refresh" CONTENT="10; URL=http://www.whatever.com">
Use this in your first page. It will redirect the user to the specified page after 10 seconds. Set the CONTENT value to whatever you want (in seconds).