Como lo indica isaBelM
Código HTML:
<!DOCTYPE html>
<html lang="es-CO">
<head>
<meta charset="UTF-8">
<title>@tutorias</title>
<style type="text/css">
#saludo{
background-color:hsla(0,0%,34%,.4);
color :#900;
font-size : 4em;
left :0;
line-height : 10em;
min-height :100%;
min-width :100%;
position :absolute;
text-align : center;
top :0;
}
</style>
<script language="javascript">
function cerrar() {
document.getElementById("saludo").setAttribute("style","display:none");
}
window.onload = setTimeout(cerrar,2000);
</script>
</head>
<body>
<div id="saludo">Bienvenid@s a mi web!!</div>
<h1>titulo de la web</h1>
<h2>subtitulo de la web</h2>
contenido de la web...
</body>
</html>