Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/10/2011, 14:15
Avatar de Hurieta
Hurieta
 
Fecha de Ingreso: enero-2011
Mensajes: 27
Antigüedad: 13 años, 10 meses
Puntos: 2
Respuesta: cambio el fondo

A emprear le faltaron algunas cosas...

Pagina Web 1 (Index)

Código:
<html>
<head>
<title> Pagina Web 1</title>
<link href="estilos.css" rel="stylesheet" type="text/css">
</head>
<body class="home">

Mi pagina web

</body>
</html>
Pagina Web 2 (Contacto)

Código:
<html>
<head>
<title> Pagina Web 2</title>
<link href="estilos.css" rel="stylesheet" type="text/css">
</head>
<body class="contacto">

Mi pagina web

</body>
</html>

estilos.css

Código:
body.home{
background-image: url(home.jpg);
}

body.contacto{
background-image: url(contacto.jpg);
}