Ver Mensaje Individual
  #8 (permalink)  
Antiguo 11/11/2012, 10:37
Avatar de tutorias
tutorias
 
Fecha de Ingreso: octubre-2012
Ubicación: Medellin
Mensajes: 69
Antigüedad: 11 años, 6 meses
Puntos: 13
De acuerdo Respuesta: Imagen de Carga al entrar en web

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>