Lo podés lograr poniendo en tu archivo "index.html" un frame que ocupe el 100% de la pantalla y cargar todas las demas cosas en el.
EJ:
Código:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Tu Titulo</title>
</head>
<frameset frameborder="0" framespacing="0" border="0" rows="100%,*">
<frame name="superframe" src="index2.html" noresize>
</frameset>
<noframes>
<body>
Tu contenido por si el navegador del usuario no soporta frames
</body>
</noframes>
</html>